JQuery UI Datepicker - Uncaught TypeError: Cannot read property "msie" from undefined

I developed a website in WordPress and installed the Gravity Forms plugin ( http://www.gravityforms.com/ ). I added an online book form to the page, but the date picker returns the following error in the console when clicked:

Uncaught TypeError: Cannot read property "msie" undefined

http://ultimatepaintball.com.au/packages/book-online/

Has anyone experienced this problem before? I read somewhere that this might be a problem with jQuery 1.9 and $ .browser, but the problem persists even when I return to 1.8.3.

Thanks.

+7
source share
1 answer

not sure, but I think you will need to use the no conflict method http://api.jquery.com/jQuery.noConflict/

OR

change all your $ signs to jQUery in scripts

OR

 (function( $ ) { $.fn.myPlugin = function() { // Do your awesome plugin stuff here }; })( jQuery ); 

or any method that combines all of the above.

You can also find related questions on this site:

https://stackoverflow.com/search?q=jquery+conflict

+1
source

All Articles