|
|
|
|
|
by DidYaWipe
462 days ago
|
|
Thanks! I looked at MutationObserver and wondered about the example: if (mutation.type === "childList") {
console.log("A child node has been added or removed.");
How can such changes occur to the DOM that aren't brought about by other code on the page? And if other code on the page brought them about, why didn't it also perform whatever the MutationObserver is doing?Anyway, not to get too mired in details... I've done no front-end dev, but I'm building a mobile app that'll need administrative pages for me (or, hopefully, other staff) to use. Is there a "next-level up" front-end layer that provides convenience functions but still isn't a bloated framework liable to be obsolete? I like to hand-roll stuff from the basics, by all means, but I already have my hands full with a back end and a client application. |
|