Answers for "how to redirect page in javascript with data"

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
-1

redirect with data jquery

$.redirect('demo.php', {'arg1': 'value1', 'arg2': 'value2'});
Posted by: Guest on July-14-2020

Code answers related to "how to redirect page in javascript with data"

Code answers related to "Javascript"

Browse Popular Code Answers by Language