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. Link to comment https://forums.phpfreaks.com/topic/18592-solved-why-wont-my-js-file-work/ 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] ? Link to comment https://forums.phpfreaks.com/topic/18592-solved-why-wont-my-js-file-work/#findComment-80070 Share on other sites More sharing options...
laide234 Posted August 24, 2006 Author Share Posted August 24, 2006 Thanks Corona4456. That worked. Link to comment https://forums.phpfreaks.com/topic/18592-solved-why-wont-my-js-file-work/#findComment-80095 Share on other sites More sharing options...
Corona4456 Posted August 25, 2006 Share Posted August 25, 2006 No problem... glad to help :). Link to comment https://forums.phpfreaks.com/topic/18592-solved-why-wont-my-js-file-work/#findComment-80198 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.