Some Bits in Few Pieces
Javascript Show/Hide
There have been lots of posts about this thing, still i felt like i should add one to it, so here it is :)

With the improvements in CSS styles, the Javascript programmers have found ways to do wonders to the webpages and make the content more intuitive to the end user.

One of them is to show a one line heading for some content, and display the content only when the user is further interested into it. This helps in removing the clutter from the webpage, keeps the layout clean, and increases readability. Moreover it makes the user to be more interactive with the web app.

Moreover with the advent of Ajax, the content has not to be loaded into the webpage, it can be dynamically loaded into the website and hence reducing the overall load time of the webpage and improving responsiveness.

The key lies in the display property of any html object. This property denotes if the content be displayed on the webpage or not. We specify the property as:

style="display: none;"

Code Listing

PS: The show hide effect in this webpage is not achieved in the same way, since Blogger didn't allow me to include <script> tags in the blog text.