window.location.href = link;
// or
window.location.assign(link);
document.getElementById("demo").innerHTML =
"The full URL of this page is:<br>" + window.location.href;
//Result
//The full URL of this page is: https://www.w3schools.com/js/tryit.asp?filename=tryjs_loc_href
document.getElementById("demo").innerHTML =
"Page hostname is " + window.location.hostname;
//Result
//Page hostname is www.w3schools.com
document.getElementById("demo").innerHTML =
"Page path is " + window.location.pathname;
//Result
//Page path is /js/js_window_location.asp
document.getElementById("demo").innerHTML =
"Page location is " + window.location.href;
echo "<script>alert('Successfully Updated'); window.location = './edit.php';</script>";