Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

onChange 1

Status
Not open for further replies.

TheConeHead

Programmer
Aug 14, 2002
2,106
US
should this work?
<script>
function checkM() {
alert(&quot;working&quot;);
}
</script>
<form name=&quot;forma&quot;>
<input type=&quot;text&quot; name=&quot;zip&quot; onChange=&quot;checkM();&quot;>
</form>

it doesn't
 
I want the alert to fire everytime a new character is added to the text field...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top