Guest User

Untitled

a guest
Feb 19th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <a href='#' onclick = '$(this).toggleClass('hidden'); return false;'>Some link</a>
  2.  
  3. .hidden{display: none;}
  4.  
  5. <a href = '' onclick='showSome(this)' target ='additional'>Some description</a>
  6.  
  7. function showSome(obj){
  8. obj.style.display = 'none';
  9. var target = obj.getAttribute('target');
  10. document.getElementById(target).style.display = 'block';
  11. return false;
  12. }
Add Comment
Please, Sign In to add comment