Jquery スピナーを実装しましたが、Firefox では正常に動作しますが、Chrome では動作しません。start spinner と stopSpinner という2つの関数を作成しました これが私のコードです
function startSpinner(){
$(document).ready(function() {
console.log('spinner should be getting shown now');
$('#spinner').show();
});
}
function stopSpinner(){
$(document).ready(function() {
console.log('spinner should be getting shown now');
$('#spinner').hide();
});
}
CSS クラス
.spinner {
position: fixed;
top: 50%;
left: 50%;
margin-left: -50px; /* half width of the spinner gif */
margin-top: -50px; /* half height of the spinner gif */
text-align:center;
z-index:1234;
overflow: auto;
width: 100px; /* width of the spinner gif */
height: 102px; /*hight of the spinner gif +2px to fix IE8 issue */
}
HTML
<div id="spinner" class="spinner">
<img id="img-spinner" src="images/spinner.gif" alt="Loading" />
</div>
そのため、呼び出したいときはいつでも startSpinner(); と言うのが常です。と StopSpinner();
ありがとう