I would recommend changing the script type from text/jscript to text/javascript, since the former does not, at the very least, work on Firefox 3b5.
On Wed, Apr 30, 2008 at 3:59 PM, Waters <[EMAIL PROTECTED]> wrote: > > Sorry about that ignore my previous post - - a quick search of the > archive revealed the answer.. > > .hover is the way to do this. > > $(document).ready(function(){ > $("#div1").hover(function () { > $("#div3").slideDown(500); > }, function() { > $("#div3").slideUp(300); > }); > }); > > -- Ted