View Single Post
  #7  
Old 19th July 2013, 22:41
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Default
Code:
<script language="javascript" type="text/javascript"  src="js/jquery-1.1.1.pack.js">
</script> 
<script  type="text/javascript"> $(document).ready( function()
{    
$('div.news-head')   .click(function()
{      
$(this).toggleClass('unfolded');      
$(this).next('div.news-body').slideToggle('fast');   }); });  
</script>
better to read now
Reply With Quote