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?
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?
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