Guest User

Untitled

a guest
Jan 18th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. jQuery(document).ready(function($) {
  2.  
  3. if (window.history && window.history.pushState) {
  4. window.history.pushState('forward', null, './#forward');
  5. $(window).on('popstate', function() {
  6. alert('Back button clicked...');
  7. });
  8. }
  9. });
Add Comment
Please, Sign In to add comment