Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using jQuery validation to validate a dropdown list as follows:

here is the javascript part:

 $.ready(function(){ 
   $.validator.addMethod("dropdown", function (value, element) { return    validateDropDowns(this, value, element); });
    $('#form1').validate({
        onsubmit: false,
        focusInvalid: true,
        highlight: function (element, errorClass, validClass) {
            $(element).toggleClass('invalid');
            $(element.form).find("label[for=" + element.id + "]").toggleClass(errorClass);
        },
        unhighlight: function (element, errorClass, validClass) {
            $(element).toggleClass('invalid');
            $(element.form).find("label[for=" + element.id + "]").toggleClass(errorClass);
        }
    });
});

function validateDropDowns(objContext, value, element) {
    return objContext.optional(element) || value != "-1";
}

and here is the markup part:

<asp:DropDownList runat="server" ID="cmbGender" ClientIDMode="Static" meta:resourcekey="cmbGenderResource1">
    <asp:ListItem Selected="True" Value="-1" Text="please select gender" meta:resourcekey="ListItemResource1"></asp:ListItem>
    <asp:ListItem Value="1" Text="male" meta:resourcekey="ListItemResource2"></asp:ListItem>
    <asp:ListItem Value="2" Text="female" meta:resourcekey="ListItemResource3"></asp:ListItem>
</asp:DropDownList>

I have a submit button and on its click I validate the form return $("#form1").valid();

now everything works fine in Chrome and Firefox but in IE9 I get a very weird behavior; the dropdown works fine before validation and after validating it. when you try to open the dropdown it will close immediately.

share|improve this question
Ever figure this out? I am seeing the same behavior in IE9. – Grand Master T Jul 26 '12 at 19:25
there was a missing closing tag on the page HTML markup, once I fixed it everything works fine – Mohammad Shahrouri Jul 28 '12 at 8:01

2 Answers

Add onclick: false in your validation option:

e.g.

$(".selector").validate({
   onclick: false
})

This worked for me.

share|improve this answer

I am having the same issue when calling addClass() on the element in the highlight function. I think your issue is to do with the toggleClass() function as well. Remove calls to toggleClass() and see if it still happens.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.