borisbaer: JS script sowohl bei dynamisch als auch statisch geladenem content ausführen

Beitrag lesen

problematische Seite

Hallo Gunnar,

so habe ich das jetzt letztlich auch gemacht …

const observer = new MutationObserver(function( mutationList ) {
	console.log( mutationList );
	mutationList.forEach(function( mutation ) {
		mutation.addedNodes.forEach(function( addedNode ) {
			if ( addedNode.className === "maps" ) {
				draggable();
			}
		});
	});
});

const target = append;
const options = { childList: true, subtree: true };
observer.observe( target, options );

Da ich das wohl noch häufiger brauchen werde, habe ich allerdings noch eingebaut, dass der MutationObserver auch schaut, welche nodes geladen wurden.

Ich habe jetzt übrigens auch den Großteil meiner js scripts von jQuery in Vanilla JavaScript umgeschrieben. Bald sollte ich ganz darauf verzichten können.