Skip to content Skip to sidebar Skip to footer

Jquery Datepicker Not Working ,date Box Not Appearing

i am trying to add jquery dtepciker to my application in Grails(Intelli J) but its not showing the datepicker here is my html code

Solution 1:

Yes you need to have jquery and jquery-ui datepicker plugin to make this work. You can download the plugin from http://jqueryui.com/download

Download the js and include in your page.

One more thing, $("datepicker").datepicker(); should be $("#datepicker").datepicker();

Also check out jQuery DatePicker not Loading, it might help.

Solution 2:

I think it should be:

$("#datepicker").datepicker();

Post a Comment for "Jquery Datepicker Not Working ,date Box Not Appearing"