Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(document).ready(function() {
  2.  
  3. $(window).on('hashchange', function () {
  4. if(window.location.hash.indexOf('modal') === 1) {
  5. var hashIndex = window.location.href.indexOf('#');
  6. var stringBeforeHash = window.location.href.slice(hashIndex);
  7. console.log(stringBeforeHash);
  8. var aelement = $('a[href=' + stringBeforeHash + ']').children()[0];
  9. aelement.click();
  10. }
  11. });
  12.  
  13.  
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement