-2

I want to load the previous page without postback when I click on a button in the current page.?

The same event should occur when we click on browser back button.

Sukesh Chand
  • 2,339
  • 2
  • 21
  • 29

1 Answers1

0

Check this code:

$('#mybtn').click(function(){
    history.go(-1);
});
Naqash Malik
  • 1,707
  • 1
  • 12
  • 14