i want to call two functions from the single onload event in javascript. is it posssibe? if it is possible then how??
calling two functions from a single event
Collapse
X
-
Tags: None
-
See this article. Alternatively, use the advanced event registration model, addEventListene r/attachEvent (see link). -
Originally posted by localhost1i want to call two functions from the single onload event in javascript. is it posssibe? if it is possible then how??
hi,
u can call two javascript functions in single event..
one thing is to do is "two function should be separated my semi colon"
something like
onload="javascr ipt:x();y()"
-HamsaComment
Comment