I'm trying to use a form to pick up a value from a webpage that a client inputs. This can be anything. The idea is to search multiple websites by opening new tabs having constructed the required URL using a function.
I can open one tab and do the search but multiple functions do not run. I've tried the usual funct={funct1;funct2} but cannot get this to work.
Here is the working part of the script
function process(){var url="http://jobs.rsc.org/searchjobs/?keywords=" + document.getElementById("url").value;
window.open(url,'_blank' // <- This is what makes it open in a new window.);
return false;}
<form onsubmit="return process();">Job Description: <input name="url" id="url" type="text"><input value="go" type="submit"></form>
Adding additional functions and calling <form onsubmit="return process();return process1()";
Also doesn't seem to work I either get one or the other functions or neither. The script just searches a chemistry jobsite but it could be anything and the urls are constructed differently depending on the site.