Advertisement
PayneLess_Designs

PayneLess Designs - Show/Hide Script

Jun 21st, 2012
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.77 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml"><head>
  3. <title>Show/Hide Script</title>
  4. <meta name="created" content="Sun, 10 Jan 2010 16:19:54 GMT" />
  5. <meta http-equiv="content-type" content="text/html;charset=utf-8" />
  6. <meta name="description" content="" />
  7. <meta name="keywords" content="" />
  8. <style type="text/css">
  9. * { margin: 0; padding: 0; border: 0; }
  10. html, body { width: 100%; height: 100%; font-size: 1.5em; }
  11. h1, p { text-align: center; }
  12. #hidden_div { width: 250px; height: 360px; margin: 3% auto; }
  13. </style>
  14. <script type="text/javascript">
  15. function showHide(obj) {
  16. var div = document.getElementById(obj);
  17. if (div.style.display == 'none') {
  18. div.style.display = '';
  19. }
  20. else {
  21. div.style.display = 'none';
  22. }
  23. }
  24. </script>
  25. </head><body>
  26. <h1>Show/Hide Script</h1>
  27.  
  28. <p><a href="#" onclick="showHide('hidden_div'); return false;">Show/Hide Chat Box</a></p>
  29. <div id="hidden_div">
  30. <object style="width:250px; height:360px;" id="obj_1263105341127"><param name="movie" value="http://lmaoanime.chatango.com/group" /><param name="AllowScriptAccess" value="always" /><param name="AllowNetworking" value="all"/><param name="AllowFullScreen" value="true" /><param name="flashvars" value="cid=1263105341127&b=100&c=666666&d=666666&g=333333&j=333333&k=FFFFFF&l=CCCCCC&m=FFFFFF&s=1&w=0" /><embed id="emb_1263105341127" src="http://lmaoanime.chatango.com/group" width="250" height="360" allowScriptAccess="always" allowNetworking="all" type="application/x-shockwave-flash" allowFullScreen="true" flashvars="cid=1263105341127&b=100&c=666666&d=666666&g=333333&j=333333&k=FFFFFF&l=CCCCCC&m=FFFFFF&s=1&w=0"></object>
  31. </div>
  32.  
  33. <p>HTML coding errors produced by Chat Box code.</p>
  34. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement