Advertisement
Guest User

Untitled

a guest
Sep 16th, 2014
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <script language = "javascript">
  2. obj = document.getElementById("graphics");
  3. obj_txt = document.getElementById("graphics_txt");
  4. obj.style.display = "none";
  5. obj_txt.onclick=function(){
  6. if( obj.style.display == "none" ) {
  7. obj.style.display = "block";
  8. obj_txt.style.color = 'red';
  9. } else {
  10. obj.style.display = "none";
  11. obj_txt.style.color = 'blue';
  12. }
  13. }
  14. </script>
  15. <a href="#" id="graphics_txt" obj.style.color = 'red' >Показать/скрыть графики </a>
  16. <div id="graphics">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement