View Single Post
Old 11-06-2012, 09:47 PM   PM User | #3
Logic Ali
Regular Coder

 
Logic Ali's Avatar
 
Join Date: Sep 2010
Location: London
Posts: 959
Thanks: 0
Thanked 198 Times in 193 Posts
Logic Ali will become famous soon enoughLogic Ali will become famous soon enough
Quote:
Originally Posted by chasero13 View Post
I have the following script on a website:
Then lose it along with javascript:, language="javascript" and <font>, all of which are unnecessary or deprecated.

Code:
<script type="text/javascript">

function toggle( targetId ) 
{
  var elem = document.getElementById( targetId );
  
  elem.style.display = ( elem.style.display == "none" ? "block" : "none" ); 
  
  return false;
}

</script>

<a href="#" onclick="return toggle('Link1')">EXAMPLE</a>
<div id="Link1" style="display: none">
 <div align="left"><font color="#4a4a4a" size="2" face="helvetica">Example only. Example only. Example only.
 </div>
</div>
Logic Ali is offline   Reply With Quote