answer99
answer99

Reputation: 251

trigger function for back button in browser by javascript

For Example, if any running any web page and wanted to go back, i unable get any function on click on the back button in the browser. Does javascript provide any function for trigger the back button.

Upvotes: 0

Views: 100

Answers (1)

user3235832
user3235832

Reputation:

You can use history.back() on most browsers.

Source: http://www.w3schools.com/jsref/met_his_back.asp

Upvotes: 1

Related Questions