ノベルゲームとしての Web フロントエンド | su8ru
やってみる
const target = document.getElementsByClassName('chara-name')[0];
const observer = new MutationObserver((mutations) => {
mutations.map((mutation) => {
const { type, target } = mutation;
if (type === 'childList') {
}
});
});
observer.observe(target, {
childList: true,
});