FF と Jquery .show() に問題があります。
私のウェブサイトは、リンクをクリックするとGoogleから埋め込まれた地図を表示します.私はこれを処理するjavascript関数を持っています.サファリではうまく機能します.FFは地図を表示しません.
これがjsです。関数:
function mostraPagina(nome){
if (nome='mappa'){
$('#mappa').load('contenuti/mappe/mappa_thiene.html');
$('#dark_background').show(600);
$('#mappa').show(600);
}
}
Googleマップからの埋め込みコードは次のとおりです。
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Via+Murialdo,+4,+Thiene+italy&sll=45.710686,11.475665&sspn=0.002439,0.005676&ie=UTF8&hq=&hnear=Via+Murialdo,+4,+36016+Thiene+Vicenza,+Veneto,+Italy&ll=45.710222,11.475618&spn=0.001219,0.002838&t=h&z=14&output=embed"></iframe>
どうもありがとうございます。