[jQuery] Form validation, not typical name of input.
Hi,
i have problem with validation for my form. For example:
<form id="valid">
<input type="text" name="data[Order][login]" />
</form>
$('#valid').validation({
rules: {
'data[Order][login]': 'required',
}
});
The validation method above dosn't work. Where is the problem? With
not typical name of input?