-2
window.location="abc.html";
window.location.href = "abc.html";
window.location.assign("abc.html");
window.location.replace("abc.html");

<a href="abc.html">link</a>

I know these techniques in JS to redirect page to another but are there any other methods ? ? ?

help me with it .

captainsac
  • 2,484
  • 3
  • 27
  • 48
  • Should you include tags in the title? http://meta.stackexchange.com/questions/19190/should-questions-include-tags-in-their-titles – Collin Jun 23 '15 at 06:06
  • 1
    I'm not quite clear on the **problem** you're facing. _"Are there any other methods?"_ is not a **problem**. Can you please elaborate on your question and explain the issue you're trying to solve? – Christian Jun 23 '15 at 06:09
  • 1
    question should be related to specific problem and not class homework list of page redirection techniques.. – Vaibs_Cool Jun 23 '15 at 06:11
  • actully i need a diffrent way to redirect on another page after submitting form ... – jaydev thakkar Jun 23 '15 at 06:15
  • And why do you need a different way? – Collin Jun 23 '15 at 06:16

1 Answers1

1

There are other ways too

From HTML page

Redirect from an HTML page

window.open()

http://www.w3schools.com/jsref/met_win_open.asp

document.location

document.location

Community
  • 1
  • 1
captainsac
  • 2,484
  • 3
  • 27
  • 48
  • @ jaydev thakkar Glad to have been of help! Feel free to accept my answer if you feel it was useful to you. :-) http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work – captainsac Jun 25 '15 at 06:03