Redirect mit jQuery/JavaScript
abgelegt unter:
jquery,
JavaScript
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);