Hi,

I'm trying to do a very simple thing with jquery, it works all right 
with firefox, and it works SOMETIMES with IE 6 and IE 7..

I'm using the very latest jquery 1.0.4

here is my code :

<script type="text/javascript" src="/v3/scripts_js/jquery.js"></script>         


<script type="text/javascript">
$().ready(function(){

        $("a.ShowMap").click(
        function()
        {
                
$("div.dynamic_zone").find("div#description").css({display:"none"});
                $("div.dynamic_zone").find("div#map").show("slow");
                
        });
        
        $("a.ShowImage").click(
        function(){
                $("div.dynamic_zone").find("div#map").css({display:"none"});
                $("div.dynamic_zone").find("div#description").show("slow");
        });


});
</script>

Is there a problem here ???

Please, i can't understand why it sometimes works and why sometimes not, 
on the same page... i reload the page, and it's working.. (SOMETIMES !)


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to