Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. function backcall(){
  2. var status = document.getElementById('backcallmsgdiv');
  3. status.style.height="500px";
  4. status.style.border = "1px solid #A52629";
  5. status.style.overflow = "visible";
  6.  
  7. }
  8. function closebc(){
  9. var status = document.getElementById('backcallmsgdiv');
  10. status.style.height="0px";
  11. status.style.border = "0px solid #A52629";
  12. status.style.overflow = "hidden";
  13. status.addEventListener("click", stopEvent, false);
  14.  
  15. }
  16.  
  17.  
  18. <div class="cl1"><a href="#" onclick="backcall()" >Свяжитесь с нами</a></div>
  19. <div id="backcallmsgdiv">
  20. <a href="#" onclick="closebc()" ><div id="close">X</div></a>
  21. <div class="tre"></div>
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement