views:

145

answers:

4

Hello,

I have implemented a ui datepicker which works perfectly in FF but not in IE.

See here link try to click on the "Geboortedatum" field. What's going wrong?

+2  A: 
Zaagmans
how are you able to see line 79, my view source only shows to line 69 for some reason
TStamper
I edited the answer: it's line 76-78 in Ladosa.js.
Zaagmans
no...my question is for viewing the source code, when I open it in notepad, the farthest the line goes to is 69 and i dont understand why
TStamper
A: 

I removed the comma but it doesn't solve the problem yet ;-)

sanders
A: 

Well,

I am using thisone:

sanders
+2  A: 

here is your problem:

    //set the rules for the field names
   rules: {
    firstname: {
     required: true,
     minlength: 2
    },
    surname: {
     required: true,
     minlength: 2
    },    
    email:{
     required: true,
     email: true
    },
    password:{
     required: true
    }, <----- remove this comma !!!

   },

remove that comma above. also, if you put that block of code into http://jslint.com you will find out the same thing. IE does not like trailing commas like that in hashes, as others have pointed out

mkoryak
+1 spotted the good comma, nice one!
Zaagmans