Code: Select all
<input type="button" name="b1" value="Enter" onclick="return function1();return function2()">Moderator: General Moderators
Code: Select all
<input type="button" name="b1" value="Enter" onclick="return function1();return function2()">I think you want this:dheeraj wrote:hello guys, i m in confusion that can we call more than one function on a single event, example is below...
Code: Select all
<input type="button" name="b1" value="Enter" onclick="return function1();return function2()">
Code: Select all
<input type="button" name="b1" value="Enter" onclick="return function1() && function2()">