Every line of 'back to previous page javascript' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
240 function previousPage() { 241 if (page > 1) { 242 page--; 243 244 var svg; 245 if ((typeof svgs !== 'undefined') && (svgs.length > 0)) { 246 svg = svgs[page]; 247 } 248 else { 249 svg = vrvToolkit.renderPage(page); // render a page 250 } 251 252 document.getElementById("svg_output").innerHTML = svg; // print it 253 svgElement = document.getElementsByTagName("svg")[0]; // get the svg element in the html tree 254 layoutSvg(); 255 updateNavigation(); 256 } 257 }
13 function backToPreviousPage(e) { 14 window.history.back(); 15 }
122 previous() { 123 this.search(true); 124 return false; 125 }
102 function back() { 103 document.getElementById("card-wrapper").className = ""; 104 document.getElementById("c1").setAttribute("style", ""); 105 push() 106 }