Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JQuery を使用して、HTML 要素の font-family が変更されたときにイベントを発生させる方法はありますか?
これを試して
var fontf= $('div').css('font-family'); myfunc(); function myfunc(){ if(fontf != $('div').css('font-family')) alert('changed'); else setTimeout(myfunc,1000); }