Guest User

Untitled

a guest
Feb 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // This is the example Javascript code
  2.  
  3. $('h1,h2,h3,h4,h5,h6').each(function(i,e) {
  4. try {
  5. var hash = ">"+$(e).first().text().replace(/[^a-zA-Z\ ]/g,'').replace(/\ /g,'_');
  6.  
  7. $(e).attr('title','Double click to get the URL for this point on the page: #'+hash);
  8. $(e).attr('id',hash);
  9. $(e).dblclick(function() {
  10. window.location.hash = hash;
  11. })
  12. } catch(e) {
  13. }
  14. })
Add Comment
Please, Sign In to add comment