Answers for "on button click redirect to another page with parameters"

7

js onclick redirect

<button onclick="location.href='www.yoursite.com'">Click Me</button>
Posted by: Guest on June-16-2020
0

javascript redirect with extra url arguments

if (window.location.search === '') {
  window.location = window.location.origin + '?arg=1'
} else {
  window.location = window.location.origin + window.location.search + '&arg=1'
}
Posted by: Guest on February-25-2020

Code answers related to "on button click redirect to another page with parameters"

Browse Popular Code Answers by Language