Home › Forums › JavaScript › jQuery placeholder in IE passing validation… › Re: jQuery placeholder in IE passing validation…
October 26, 2011 at 3:34 pm
#89716
Member
I tried what @TT_Mark said after a lot trying to figure out how and I came up with this, but don’t know if it is correct? It seems to be working though…
Any thoughts?
html:
php:
if(empty($name)){
$errors = 'Enter';
} else {
if (is_string("Name")) {
$errors = 'Enter your name';
}
}