hi using the jquery validate plugin, using the .addmethod inorder to check whether the input is equal to contact name and if so to ask the user to enter a name
$(document).ready(function(){
$.validator.addMethod("contact1", function(value) {
return value != "Contact Name";
}, 'Please enter a contact name');
$.validator.addMethod("message1", function(value){
return value != "Message";
}, 'Please enter a contact name');
$('.contact-form form').validate({
rules: {
contact: {
"contact1":'',
required: true
},
text: {
"message1":'',
required: true
},
},
}); });
this works fine for input="text" boxes but doesn't work for text areas how would i go about getting this to work for a text area?
edit sorry left out the addmethod i had for the text area
this is what i have in the html
<textarea onblur="if(this.value=='')this.value=this.defaultValue;"
onfocus="if(this.value==this.defaultValue)this.value='';" rows="5" id="text" name="text">Message
</textarea>
it does call the 'required' correctly but not the .addmethod function
message1; shouldn't it betext1to invoke that method? – Barmar Oct 29 '12 at 18:32placeholderattribute, and forget about older browsers. – Barmar Oct 29 '12 at 18:33