Jump to content

**solved** Why wont my .js file work?


laide234

Recommended Posts

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.