window.open href button code example
Example 1: window.href
//its actually
window.location.href = "/App/Home"
//or
window.location.href = "https://www.google.com/"
Example 2: onclick open link js
window.open(url);
//its actually
window.location.href = "/App/Home"
//or
window.location.href = "https://www.google.com/"
window.open(url);