Forum Moderators: open

Message Too Old, No Replies

Jquery and error is not shown when I label input

         

toplisek

3:41 pm on Apr 1, 2012 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



I have validation like:

<script type="text/javascript">
jQuery(function() {
jQuery("#form").validate({
rules: {
input: "required",
},
messages: {
input: "It is required filed",
},
});
});

As I have used also label inside input field it is detected this label as text inside input. This should not be detected as this is not users text.

How to avoid this?

enigma1

10:36 am on Apr 2, 2012 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Have you tried using the "depends" property inside the rules?

depends: function(element) {
// check here if the default input string is present
}