...
Code Block | ||||
---|---|---|---|---|
| ||||
// get the button object
var myButton = getObj("my_button");
// assign anonymous function as an event handler
addEvent(myButton, "click", function ()
{
alert(*"Hello There!");
});
|
...
Code Block | ||||
---|---|---|---|---|
| ||||
// get the button object
var myButton = getObj("my_button");
// assign anonymous function as an event handler
addEvent(myButton, "click", function ()
{
alert(*"Hello There!");
});
|