[jQuery] Re: slideUp slideDown and mouseover mouseout (solved)

2008-04-30 Thread Waters
Thanks Ted - done. On May 1, 3:40 am, "Theodore Ni" <[EMAIL PROTECTED]> wrote: > 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 W

[jQuery] slideUp slideDown and mouseover mouseout (solved)

2008-04-30 Thread Waters
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); }); });

[jQuery] slideUp slideDown and mouseover mouseout

2008-04-30 Thread Waters
Hi all - new to jQuery - a case of trying to run before I walk for sure... But.. can anyone help with this? I have a container div - and two nested divs: one for text, and another with button (will become part of a resultset) I'd like the button div to show with the slideUp and slideDown funct

[jQuery] $.blockUI()

2007-05-15 Thread philip . waters . pryce
is there some way to reference a element, not html code, and have the orignal element not be removed. currently when you call say $.blockUI($('#modal')); it removed #modal from the DOM, is there some kind of option to turn this off? and posibly just make that element invisible or not displayed?