Feb 26, 2002 #1 jruiseco Programmer Oct 10, 2001 52 US How do I call two functions from one onclick within input submit code? <input type="submit" name="Submit" value="Continue With Order" onClick="return checkstate()""return ShipAlert()">
How do I call two functions from one onclick within input submit code? <input type="submit" name="Submit" value="Continue With Order" onClick="return checkstate()""return ShipAlert()">
Feb 26, 2002 #2 spewn Programmer May 7, 2001 1,034 try using ; instead of "" and no return, or return on shipAlert() only... <input type="submit" name="Submit" value="Continue With Order" onClick="checkstate();ShipAlert()"> -spewn Upvote 0 Downvote
try using ; instead of "" and no return, or return on shipAlert() only... <input type="submit" name="Submit" value="Continue With Order" onClick="checkstate();ShipAlert()"> -spewn
Feb 26, 2002 Thread starter #3 jruiseco Programmer Oct 10, 2001 52 US Thanks, that did it... Cheers... Upvote 0 Downvote