I have a form with below code...
<table width="100%" border="0">
<tr>
<td class="text-1" height="43" width="40%">Full Name :<font color="#ff3a00">*</font></td>
<td height="43" width="60%"><input name="txtbox" type="text" class="txtbox" required/></td>
</tr>
<tr>
<td height="43" class="text-1"> </td>
<td height="43"><input name="" class="submit-btn" type="submit" value="Submit" /></td>
</tr>
</table>
My issue is that whenever a user fills the Full Name textbox with SPACES.. the required attribute allows it..??
How can i stop if just SPACES are filled by any user...
Please let me know..
Also, i tired using patter in inputbox..