Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. :target {
  2. background-color: #ffa;
  3. }
  4.  
  5. <div>
  6.  
  7. <h1><a id="first">How can I...</a></h1>
  8.  
  9. <h1><a id="second">...make this...</a></h1>
  10.  
  11. <h1><a id="turd">Highlighted when....</a></h1>
  12.  
  13. <h1><a id="furd">Visited by an...</a></h1>
  14.  
  15. <h1><a id="earth">Anchor URL</a></h1>
  16.  
  17.  
  18. </div>
  19.  
  20. var id=window.location.href.substring(window.location.href.lastIndexOf('/') + 1);
  21. $(id).css('background-color','red');
  22.  
  23. var hash = window.location.hash;
  24. $('#'+hash).parent().css('background-color','red');
  25.  
  26. $("h1").each(function(a,b){
  27. $(this).find('a').click(function(){
  28. console.log(this);
  29. $(this).css('color','#333399');
  30. });
  31. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement