I'm building an HTML form that validates with the jQuery validation plugin.
Minimal Working Example on JSFiddle
I'm now trying to add hints to my input boxes so that it's easier for the user to see what to enter as the table length increases.
Note that the 'Email' field is validated with the validation plugin. The problem is that the validation plugin is validating based upon hint-text.
I don't want to manually write a bunch of filters that compare against the hint text, so I was wondering if there was an alternative means of setting the hint-text than manually setting $(elem).val()
?