Guest User

Untitled

a guest
Jan 16th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. if (window.History && window.History.enabled) {
  2. var vars = {};
  3. var tables = {};
  4. vars['something'] = 'value';
  5. History.replaceState({vars: vars, tables: tables}, null, window.location.href.match(/^([^#]*)/)[1]);
  6. }
  7.  
  8. var state = History.getState();
  9. var data = state.data;
  10.  
  11. if (data.vars) {
  12. alert('success!');
  13. }
Add Comment
Please, Sign In to add comment