My Required validation for a field doesn't work because even the user didn't input anything, the watermark text is sent to the server. What's the best way to handle this? I'm using jquery and asp.net mvc.
|
You can use
|
|||||||||
|
|
|
The HTML5 placeholder attribute allows the browser to display a watermark and so the watermark value is not submitted back to the server on form posts. Then add an extra bit of jQuery in your page for browsers that do not support |
|||
|
|
|
If you don't want to include additional plugins you can always override the validator:
Remember though that this overrides the default required validator for all required checks on the page. |
|||
|
|