Feb 27, 2002 #1 david7777777777 Programmer Joined Sep 26, 2001 Messages 417 Location US Is it possible to do field validation as soon as the user tabs out of one field and onto another? Thanks.
Is it possible to do field validation as soon as the user tabs out of one field and onto another? Thanks.
Feb 27, 2002 #2 Discord Programmer Joined Dec 7, 2001 Messages 133 Location US sure. use the onblur of the field Upvote 0 Downvote
Feb 27, 2002 #3 Xenobia MIS Joined Feb 27, 2002 Messages 12 Location GB Yep, you can do it on the client side using Javascript... What you need to process is the 'LostFocus' event. Upvote 0 Downvote
Yep, you can do it on the client side using Javascript... What you need to process is the 'LostFocus' event.
Feb 27, 2002 Thread starter #4 david7777777777 Programmer Joined Sep 26, 2001 Messages 417 Location US Is that the same as onBlur? Upvote 0 Downvote
Feb 27, 2002 #5 link9 Programmer Joined Nov 28, 2000 Messages 3,387 Location US According to devguru(http://www.devguru.com), lostFocus isn't a javascript event. Maybe it's vbScript? Dunno. onBlur is the one you're looking for if you want to use javaScript. Use it quite often... works quite well. paul Upvote 0 Downvote
According to devguru(http://www.devguru.com), lostFocus isn't a javascript event. Maybe it's vbScript? Dunno. onBlur is the one you're looking for if you want to use javaScript. Use it quite often... works quite well. paul