How to call 2 javascript functions on a single html button click?


<input type="button" id="next" name="next" value="Next" onClick="javascript:if(formcheck()) secondblock()">

Note=>which function you want to call first write the name of that function at first position;

Comments