Hi Guys,
I have a problem in that I am using a simple watermark plugin such that it works
jQuery('#selector').Watermark('Watermark text here ...');
The problem is - when I try and use something like
if (jQuery('#selector').val() != "") { //do stuff }
The statement is True
because of the watermark. Is there anyway I can somehow "ignore" this watermark value for my If
statement ?
Thanks