jQuery Validate Ignore elements with style
        Posted  
        
            by gmcalab
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by gmcalab
        
        
        
        Published on 2010-04-12T16:08:59Z
        Indexed on 
            2010/04/12
            16:13 UTC
        
        
        Read the original article
        Hit count: 350
        
jquery-validate
|jQuery
I am using jQuery validate for client side validation and I want to ignore any element that has the style="display: none"
$("#myform").validate({
   ignore: "?"
});
What would my selector be for that in the above case?
© Stack Overflow or respective owner