hi,
I think u can call mutiple functions in a single event
HTML Code:
<!-- call the multiple functions in single evey --> <input type="button" onclick="test1();test2();" value="Click"/> <script>
//# - Function1
function test1()
{
alert('test1');
}
//# - Function2
function test2()
{
alert('test2');
}
</script> I hope it will help u