laide234 Posted August 24, 2006 Share Posted August 24, 2006 I am calling a function in a .js file from a php file.I am pretty sure I am calling my .js file correctly, using[code]<sc**pt language="JavaScript" type="text/javascript" src="../library/job.js"></sc**pt>[/code]and[code]<input name="btnAddJob" type="button" id="btnAddJob" value="List Job" onClick="listJob();" class="box">[/code]However, within my .js file, this function works:function listJob(){window.location.href = 'index.php?view=add';}But when I modify it to a simple submit, it doesnt work.function listJob(){submit();}The above code will not respond (I am trying to submit the contents of a form.. I intend on adding some validation before submitting).Again, I am calling the file correctly... It just stops working when I change "window.location.href = 'index.php?view=add';" to "submit();"I would like to know why this is happening. Quote Link to comment Share on other sites More sharing options...
Corona4456 Posted August 24, 2006 Share Posted August 24, 2006 Isn't the syntax supposed to be:[code]document.myform.submit()[/code] ? Quote Link to comment Share on other sites More sharing options...
laide234 Posted August 24, 2006 Author Share Posted August 24, 2006 Thanks Corona4456. That worked. Quote Link to comment Share on other sites More sharing options...
Corona4456 Posted August 25, 2006 Share Posted August 25, 2006 No problem... glad to help :). Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.