Hi Try adding return false into your click handlers to stop the browser calling the url in the href' $("#rssInfo").hide(); $("a#subscribeRollover").click(function () { $("#rssInfo").show("fast"); return false; }); $("a#rssInfoClose").click(function () { $("#rssInfo").hide("fast"); return false; });
Paul On Oct 24, 2:52 am, dsizemore <[EMAIL PROTECTED]> wrote: > Hi, > > In my first attempt at showing and hiding a div with jQuery, I've > hacked together this code and I'm looking for any thoughts on what I > did wrong (if anything?) The code seems to work in FireFox, IE7, and > Safari/Chrome. Opera and IE6 seem to work at random, so I'm not > exactly sure what's up with them, but I assume my code is flawed? > .....