CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   JavaScript frameworks (http://www.codingforums.com/forumdisplay.php?f=62)
-   -   Help! Jquery UI datepicker doesn't work!? (http://www.codingforums.com/showthread.php?t=284999)

mrbean 12-29-2012 03:47 PM

Help! Jquery UI datepicker doesn't work!?
 
Here's the code:
http://jsfiddle.net/d2gWK/

DanInMa 12-29-2012 04:10 PM

you should try describing your problem, and indicating what field is having an issue.

mrbean 12-29-2012 04:12 PM

Sorry, datepicker of jqueryUI doesn't work.

Scroll down to: "Datum oudste factuur:"
And try to pick a date

xelawho 12-29-2012 04:30 PM

your html is a mess. IDs are supposed to be unique, but you have given the same one to every input box you have :eek:

the datepicker works with IDs, so if you use this:
Code:

$("#input-two").datepicker({
it will work, but on the first field that has that ID (Bedrijfsnaam:)

give your inputs unique IDs and if you want to style them all the same, that is what class is for so they can all have the same class name. Then the datepicker will work by supplying it the id of the element you want it to work on


All times are GMT +1. The time now is 07:30 AM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.