Visit Mozilla.org

DOM:window.back

From MDC

« Gecko DOM Reference

Contents

[edit] Summary

Returns the window to the previous item in the history.

[edit] Syntax

window.back() 

[edit] Example

function goBack() { 
   if ( canGoBack ) 
      window.back();
}

[edit] Specification

DOM Level 0. Not part of specification.