View Single Post
  #2  
Old 02-19-2014, 04:50 PM
  cherie's Avatar 
cherie cherie is offline
 

X-Wizard
  
Join Date: May 2003
Location: USA
Posts: 1,534
 

Default Re: Can anyone help in simple Javascript

Untested but this might at least point you in the right direction.

HTML Code:
<a href="#" onclick="toggle('moreDescr');return false">see more</a> <div id="moreDescr" style="display:none"> {$product.descr} </div>
PHP Code:
{literal}
<
script type="text/javascript">
function 
toggle(id) {
  $(
"#"+id).toggle();
}
</
script>
{/
literal
EDIT: now tested and adjusted
__________________
redlimeweb.com
custom mods and design integration
4.7 linux
Reply With Quote