Elxis CMS Forum
		Support => General => Topic started by: MrEmz on March 13, 2013, 11:35:25
		
			
			- 
				How can i troubleshoot my popup calendar into my checkin and checkout?
Hello,
Please tell me, how can i fix my calendar for my checkin and checkout  from booking page?
Please look at the screenshot below.
Anyone?
Thanks,
			 
			
			- 
				99% you have Jquery and Mootools conflict, search the forum we have post the solution OR google: "Jquery and Mootools conflict"
			
 
			
			- 
				Please give me the link, about that.
			
 
			
			- 
				You have to add & adjust the code from the website according your code.
http://davidwalsh.name/jquery-mootools (http://davidwalsh.name/jquery-mootools)
<p>jQuery sets this paragraph's color to red but MooTools sets the border color.</p>
	<script type="text/javascript" src="jquery-1.3.js"></script>
	<script type="text/javascript">
		//no conflict jquery
		jQuery.noConflict();
		//jquery stuff
		(function($) {
			$('p').css('color','#ff0000');
		})(jQuery);
	</script>
	<script type="text/javascript" src="moo1.2.js"></script>
	<script type="text/javascript">
		//moo stuff
		window.addEvent('domready',function() {
			$$('p').setStyle('border','1px solid #fc0');
		});
	</script>