I have this simple code, slides down and up smoothly in Firefox but is choppy
in IE when I added the hide() and show().
Please what is wrong wih it?

$(document).ready(function() {

        $("#open").click(function(){
                $("#hideme").hide("fast");
                $("div#panel").slideDown("slow");
        });     

        $("#close").click(function(){
                $("div#panel").slideUp("slow"); 
                $("#hideme").show("slow");
        });             

        $("#toggle a").click(function () {
                $("#toggle a").toggle();
        });                     
        
});
-- 
View this message in context: 
http://www.nabble.com/show%28%29-hide%28%29-tp24585009s27240p24585009.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.

Reply via email to