Hi,
<body onUnload="unloa dhandler();">
<input type="button" name="Save" onClick="onclic khandler();"/><br>
function onclickhandler( )
{
document.locati on.href="http://www.google.com" ;
}
so, on clicking button , unloadhandler is called.
function unloadhandler()
{
i want the name of the button clicked(Save) here.
is it possible?
}
Comment