Bootstrap modal with jQuery post [closed]

If process.php is not found, your reference in the file is not correct. Make sure you reference to the correct path, for istance – if the file is in the rootdirectory of your site, add a slash in front of your code:

url: "process.php",

will be:

url: "/process.php",

If it is in the ‘ajax’ directory:

url: "/ajax/process.php",

Myself I usually provide a full path:

url: "http://myserver.bla/process.php",

Hope this helps