Answers for "location.href jquery"

6

jquery set href of link

$('.element').attr('href', newUrl);
Posted by: Guest on March-04-2020
6

jquery redirect to url

$(location).attr('href', 'https://google.com');
Posted by: Guest on February-25-2020
1

javascript location.href

//example 1
document.getElementById("lbl_url").innerHTML = "Page location is " + window.location.href;
//example 2
var x = location.href;
Posted by: Guest on January-05-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language