ok, i couldn't show the page but we've put the site online, now..
So, first of all, i don't have a real control on the html generated, so
just stay cool when you give a look at the source code...
For the moment, i've replaced the jquery code with a classic show/hide
javascript :
that was my jquery code :
/**$(document).ready(function(){
$("a.ShowMap").click(
function()
{
$("div#texte").css({display:"none"});
$("div#map").show("slow");
});
$("a.ShowImage").click(
function(){
$("div#map").css({display:"none"});
$("div#texte").show("slow");
});
});**/
that is my js code :
function ShowImage()
{
if (document.getElementById && document.getElementById("map") != null
&& document.getElementById("texte") != null)
{
document.getElementById("map").style.display='none';
document.getElementById("texte").style.display='block';
}
}
function ShowMap()
{
if (document.getElementById && document.getElementById("map") != null
&& document.getElementById("texte") != null)
{
document.getElementById("map").style.display='block';
document.getElementById("texte").style.display='none';
}
}
Here is the page url for example :
http://www.monagence.com/ola/e/pkg_offering?pkgID=PKG-4-7534-P8V5
the point is that jquery code works well on firefox, sometimes
(randomly) in IE 6 and never or quite so in IE 7...
So... what can i do to have a nice effect, instead of just a show/hide..
thanks
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/