Easy Slide down or Slide up effect by JQuery

Submitted by Anonymous (not verified) on Sat, 12/15/2012 - 23:41

Slide Down or Slide Up Effect:

Put these line to your html page :

<div id="heading">Hover to Show Message</div>
<div id="message">Message</div>
<script>
$(document).ready(function(){
  $('#heading').hover(function(){
    $('#message').slideDown('slow');
  });
});
</script>

Related Items

Website Building with JOOMLA!: A Complete Guide for the Beginner

Joomla is a popular content management system (CMS) . Using joomla package one can easily build website within two-three hours. Website build with joomla is dynamic and updateable . Joomla is conneted with MySQL data base and the script of package is build with PHP.