Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - Req: hide/show the block of text/pictures
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Req: hide/show the block of text/pictures

 Post Reply Post Reply
Author
mikeak View Drop Down
Newbie
Newbie


Joined: 17 March 2009
Status: Offline
Points: 18
Post Options Post Options   Thanks (0) Thanks(0)   Quote mikeak Quote  Post ReplyReply Direct Link To This Post Topic: Req: hide/show the block of text/pictures
    Posted: 01 June 2009 at 4:41pm

Whether probably to realize an opportunity to hide/show the block of the text/pictures in post?

As it is made here:

 
or here:
 
(Works not correctly - for testing only: put "[SPOILER=Click here]Hidden text[/SPOILER]" in post ...)
 

The variant which has been checked up personally by me:

One piece of javascript code that I use very frequently is a function
that basically toggles the visibility of an element e.g. click, show,
click, hide.
  <script type="text/javascript">
  <!--
      function toggle_visibility(id) {
         var e = document.getElementById(id);
         if(e.style.display == 'block')
            e.style.display = 'none';
         else
            e.style.display = 'block';
      }
  //-->
  </script>

Simply paste the above snippet of code underneath your <body> tag and you call
it by passing to it the ID of the element you wish to toggle the visibility of
(this element can be anything that takes an id attribute). For example
  <a href="#" onclick="toggle_visibility('foo');">Click here to toggle visibility of element #foo</a>
  <div id="foo">This is foo</div>
 


Edited by mikeak - 01 June 2009 at 5:43pm
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.