Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function GoBackWithRefresh(event)
  2. {
  3. if ('referrer' in document)
  4. {
  5. var ref = document.referrer;
  6. console.log("document referrer_____<BR>"+ref);
  7. window.location = document.referrer;
  8. /* OR */
  9. //location.replace(document.referrer);
  10. }
  11. else
  12. {
  13. console.log("window history____"+window.history);
  14. window.history.back();
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement