Elxis CMS Forum

Support => General => Topic started by: MrEmz on March 13, 2013, 11:35:25

Title: How can i troubleshoot my popup calendar into my checkin and checkout?
Post 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,

Title: Re: How can i troubleshoot my popup calendar into my checkin and checkout?
Post by: CREATIVE Options on March 13, 2013, 13:31:49
99% you have Jquery and Mootools conflict, search the forum we have post the solution OR google: "Jquery and Mootools conflict"
Title: Re: How can i troubleshoot my popup calendar into my checkin and checkout?
Post by: MrEmz on March 13, 2013, 15:32:00
Please give me the link, about that.
Title: Re: How can i troubleshoot my popup calendar into my checkin and checkout?
Post by: CREATIVE Options on March 13, 2013, 15:36:08
You have to add & adjust the code from the website according your code.

http://davidwalsh.name/jquery-mootools (http://davidwalsh.name/jquery-mootools)

Code: [Select]
<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>