Advertisement
Guest User

Untitled

a guest
May 2nd, 2015
478
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <script type="text/javascript">
  2. OCULTO="none";
  3. VISIBLE="block";
  4. function mostrar1(blo) {
  5. document.getElementById(blo).style.display=VISIBLE;
  6. document.getElementById('ver_off1').style.display=VISIBLE;
  7. document.getElementById('ver_on1').style.display=OCULTO;
  8. }
  9. function ocultar1(blo) {
  10. document.getElementById(blo).style.display=OCULTO;
  11. document.getElementById('ver_off1').style.display=OCULTO;
  12. document.getElementById('ver_on1').style.display=VISIBLE;
  13. }
  14. </script>
  15. <div id="bloque1" style="display: none;"><span style="color: rgb(0, 0, 0);">¡¡¡¡¡Number Phone!!!!!!</span></div>
  16. <div id="ver_on1" style="display: block;"><a onclick="mostrar1('bloque1')" href="#">View</a></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement