Is there a way to use JQuery to redirect to a specific URL after a give time period?
Yes, the solution is to use setTimeout, like this:
var delay = 10000;
var url = "https://stackoverflow.com";
var timeoutID = setTimeout(function() {
window.location.href = url;
}, delay);
note that the result was stored into timeoutID. If, for whatever reason you need to cancel the order, you just need to call
clearTimeout(timeoutID);