How do I change the url using jQuery?
3 answers
I am assuming you want to change the target ( href
) of an element <a>
using jQuery?
$("a#your_id").attr("href", "b.html"); // where `a#your_id` is your selector
Or do you want to change the current location in the browser (redirect someone to another page)?
window.location = "b.html"; // No jQuery required for this!
+7
source to share