faqts : Computers : Programming : Languages : JavaScript : Event handling

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

7 of 43 people (16%) answered Yes
Recently 1 of 10 people (10%) answered Yes

Entry

How to assign onClick handler to select options in NN4?

May 19th, 2001 20:15
Colin Fraser, Art S,


There is really only one way to assign the onClick event : 
<script > <!--
function onClickEventHandler() {
    //do nothing for 10 seconds
    for (i=0;i<10000;i++) ;
}
<form>
 <input type="checkbox" onClick="onClickEventHandler()">
</form>
So I suspect this is not the question you are asking.