2 validations in a field

wxdqz

New Member
Hi

I want to have 2 validations in my field one for checking null values & the other for checking dates. i am calling both the functions on blur event of the field. but only 1 function gets called the 1 which is called first, the second function doesnt get called at all

i am posting a part of my code here

<tr>
<td>Date Validation:</td>
<td><input type="text" name="txt3" maxlength="11" onblur="javascript:return checknull(this); return checkdate(this);"
title="Enter Date as: DD-MMM-YYYY"></td>
</tr>

Kindly reply

Regards
Sushant
 
Back
Top