jQuery UI Datepicker - Uncaught TypeError: Cannot read property 'msie' of undefined [duplicate] jQuery UI Datepicker - Uncaught TypeError: Cannot read property 'msie' of undefined [duplicate] wordpress wordpress

jQuery UI Datepicker - Uncaught TypeError: Cannot read property 'msie' of undefined [duplicate]


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 on the scripts

OR

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

or some method combining all of the above .

you can also search this site for similar questions :

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