Monday 21, May 2012
Welcome Guest, Register | Login  
      Home    |    Tutorials    |    Free Ebooks    |    Free Scripts    |    Articles    |    Blog     |    About Us    |    Contact Us

  Toggle a DIV using JavaScript

Here is a javascript function to toggle a div object. Once you click the Show/Hide link, the Div object will become invisible. It will become visible by clicking the Show/Hide link again.
Cut & Paste Script
<html>
<head>
<title>Toggle DIV</title>
<script>
function toggle(obj) {
    var el = document.getElementById(obj);
    if ( el.style.display != 'none' ) {
        el.style.display = 'none';
    }
    else {
        el.style.display = '';
    }
}
</script>
</head>
<body>

<a href="javascript:void(0);" onClick="javascript:toggle(document.getElementById('txtToggle'));">Show/Hide</a>
<br>
<div id='txtToggle'>This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. This is sample text. </div>
<br>
</body>
</html>
 
   
     RELATED SCRIPTS
 
Launching the print dialog box using javascript
Here is an example to launch the print dialog box using javascript....more »
Category : JavaScript Examples Hits : 565
   
Add or Change Options on a form select field using javascript
This script can be used to add or change options on a form select menu.
...more »
Category : JavaScript Examples Hits : 951
   
javascript collapsible menu script
Here is a javascript collapsible menu that turn into submenus. Useful for things like categorizing subjects and a table of contents....more »
Category : JavaScript Examples Hits : 589
   
Drop Down World Clock Using JavaScript
Look up the time of various cities around the world easily with this useful script! Configurable to use cities of your choice....more »
Category : JavaScript Examples Hits : 563
   
Add Input Fields Dynamically using JavaScript
Use this script to upload files. As a file is selected, another input field is automatically added....more »
Category : JavaScript Examples Hits : 526
   
   
SCRIPT CATEGORIES
 
  C Programs
C Programs scripts
  C++ Programs
C++ Programs scripts
  Java Programs
Java Programs scripts
  JavaScript Examples
JavaScript Examples scripts
  PHP Examples
PHP Examples scripts
  VBScript Examples
VBScript Examples scripts
 
 
 
POPULAR E-BOOKS
 
Download 5 Minutes Forex Trading Strategy Ebook 5 Minutes Forex Trading Strategy
   
Download Essentials of the Java Programming Language: A Hands-On Guide  Ebook Essentials of the Java Programming Language: A Hands-On Guide
   
Download  The 6 Dirty Little Secrets They Don't Want You To Know About Network Marketing Ebook The 6 Dirty Little Secrets They Don't Want You To Know About Network Marketing
   
Download 4 Surefire Plans To Unleash The Real Potential Of Private Label Rights Ebook 4 Surefire Plans To Unleash The Real Potential Of Private Label Rights
   
Download Power Profits Workshop Ebook Power Profits Workshop
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz