| Author |
Javascript input text event
|
Srilatha Vangala
Greenhorn
Joined: Apr 15, 2008
Posts: 2
|
|
Hi, In my application I am using AJAX for form auto completion. As soon as the user enters the Id, the corresponding information from the database is displayed in the other fields automatically. I am using <input type="text" onchange="somemethod()"> The problem with onchange event is, if the user chooses the Id from the previousely used values catched by the browser, it is not working. Is there a better event than onchange for doing this. I tried using onblur event.But its not supported by some of the browsers. Or, is there a way to stop the browser from remembering the previousely entered values? Thanks, Srilatha
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
|
|
onblur is supported by every major browser I can think of. Eric
|
 |
Srilatha Vangala
Greenhorn
Joined: Apr 15, 2008
Posts: 2
|
|
|
I am new to Ajax.When I tried onblur previously, it didn't work properly with IE. Its working now. Thanks
|
 |
 |
|
|
subject: Javascript input text event
|
|
|