Guest User

Untitled

a guest
Dec 11th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.25 KB | None | 0 0
  1. <style type="text/css">
  2. a.wtf, a.wtf:visited {
  3.  color:blue;
  4. }
  5. a.pseudovisited {
  6.  color:red;
  7. }
  8. </style>
  9.  
  10. <script type="text/javascript">
  11. $(function(){
  12.     $('a.wtf').click(function(){
  13.         $(this).addClass('pseudovisited');
  14.     });
  15. });
  16. </script>
Add Comment
Please, Sign In to add comment