$(document).ready(function(){
//other stuff
$(".active_item").click(function() {
$("body").css("cursor", "progress"); //tried wait instead of progress as well
window.setTimeout(someLength,4000);//just to make sure we do switch back at some point
$('#list tbody tr').each(function(i) {
$(this).removeClass('invisible_row');
});
$("#list tbody tr").show();
$('.catnav').each(function(i) {
$(this).removeClass('current_category');
});
$("body").css("cursor", "default");
});
});
javascript/jqueryでカーソルを待機するように変更するなどの他の質問を確認しました
しかし、私のコードでは機能しません (カーソルが " progress
" または " " に変化しませんwait
)。