Prev Page Routing

Route to previous page

by Prasad Gavande

JavaScript

var a = document.referrer;

if(a.contains("jsfiddle")){
window.history.back();


}else {
alert("This is from another domain");

}