Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
Generally when you submit a page the server alone will control what page you redirect to so you have no control over that form of submission. However there is a crude form of redirection built into QuickBase forms that continues to work (I just manually tested it).
If you sent these two hidden fields as follows when the page submits you will save the record and redirect to ibm.com (replace with your URL):
If you sent these two hidden fields as follows when the page submits you will save the record and redirect to ibm.com (replace with your URL):
$("input[name=RedirectURL]").val("http://www.ibm.com");I don't often use this method as QuickBase could easily rework the form submission process and eventually they will. Try pasting the code into the console before putting it in a code page.
$("input[name=rl]").val("");