Redirect mit jQuery/JavaScript
Codeschnipsel um eine Weiterleitung mit jQuery bzw. JavaScript umzusetzen.
Mit reinem Javascript würde es so gehen:
var url = "http://example.org";
window.location.replace(url);
oder so:window.location.href = url;
Und hier mit jQuery:
var url = "http://example.org";
$(location).attr('href',url);