[jQuery] Strange problem..
Hi,
I'm new using jquery.
First of all, i should say it's the best js library i found and so,
thanks to the author !
I'm trying to do a simple Slidedown effect for a div with a display:none.
Here is my code :
<script type="text/javascript" src="/v3/scripts_js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("a.ShowMap").click(
function()
{
$("div.dynamic_zone").find("div#description").css({display:"none"});
$("div.dynamic_zone").find("div#map").slideDown("slow");
});
$("a.ShowImage").click(
function(){
$("div.dynamic_zone").find("div#map").css({display:"none"});
$("div.dynamic_zone").find("div#description").slideDown("slow");
});
});
</script>
really simple... and it's working.. on firefox, no problem..
But sometimes, yes, just sometimes, on IE 6 / 7 , it doesn't work.. No
error messages, nothing happens.. you click on the link and nothing at
all happens.. you reload the page, and the it's ok, working.. it
depends.. and i can't see any explanation for this ! it's the same page,
the same code, and one time it works, one time it doesn't ...
So, what can i do to resolve this issue ?
thanks for any advices
--
View this message in context: http://www.nabble.com/Strange-problem..-tf2678738.html#a7471081
Sent from the JQuery mailing list archive at Nabble.com.
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/