Lost Password?

Go Back   CodeCall Programming Forum > Web Development Forum > JavaScript and CSS

Unregistered, Check out the Coder Battles in the Announcement and Game forums.

JavaScript and CSS Extensible Markup Language, Java Script, and CSS questions here.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-30-2006, 04:15 PM
Chan Chan is offline
Programming Professional
 
Join Date: Jun 2006
Posts: 204
Credits: 1
Rep Power: 10
Chan is on a distinguished road
Default Hide information

What is the code to hide a bit of information and then when the user clicks on something, like a plus mark, the information will drop down below?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
  #2 (permalink)  
Old 11-08-2006, 01:51 PM
Saint Saint is offline
Learning Programmer
 
Join Date: Aug 2006
Posts: 63
Credits: 0
Rep Power: 9
Saint is on a distinguished road
Default

Add this to your header:

HTML Code:
<script type="text/javascript">
<!--
function toggle_visibility(id) {
var e = document.getElementById(id);
if(e.style.display == 'none')
e.style.display = 'block';
else
e.style.display = 'none';
}
//-->
</script>

Add this in your code:

HTML Code:
<a href="#" onclick="toggle_visibility('foo');">Toggle Visibility</a><div id="foo">This is foo</div>
__________________
Hi >> Saint
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
JavaScript: Hide link from Statusbar TcM Javascript 31 09-24-2008 03:32 PM
Get installed software information IUnknown Software Development Tools 5 10-15-2007 06:29 PM
Hide web address pcdctr Java Help 4 06-02-2007 06:38 AM
Getting Hardware Information Guitar22891 Visual Basic Programming 1 05-09-2007 02:08 PM
Hide form on startup? NeedHelp C# Programming 7 09-02-2006 05:28 PM


All times are GMT -5. The time now is 12:43 AM.

Contest Stats

Xav ........ 1333.07
MeTh0Dz|Reb0rn ........ 1059.52
John ........ 887.37
morefood2001 ........ 879.43
marwex89 ........ 869.98
WingedPanther ........ 851.68
Brandon W ........ 764.23
chili5 ........ 312.39
Steve.L ........ 254.16
dcs ........ 225.25

Contest Rules

CodeCall Goal

Goal: 100,000 Posts
Complete: 82%

Ads