i want to assign value to email_i dynamically…….
var v = $("#email_address").validate({
rules: { activation_code: {
required: true,
alphanumeric: true,
remote: "mail.php?action=activation_code&email="+**email_i**
}
},
messages: {
activation_code: {
required: "Please input your activation code.",
alphanumeric: "Only latin characters, numbers and _ sign are allowed.",
remote: "Sorry, activation code is incorrect."
}
},
success: function(label) {
label.addClass( "formSuccess" );
label.html('<img src="HelpOneAnother/giveNet/themes/givearang_1001/gfx/icons/ok.gif" border="0" \>') ;
}
});
Use the
rules('add')method per the docs:http://docs.jquery.com/Plugins/Validation/rules#.22add.22rules