Tag Archives: DOM

JavaScript: Event Listeners inside a For-Loop

If you want to create multiple event listeners inside a for-loop to save some time, you will have the problem that all listeners are attached to the same DOM element The core problem is that we pass variable references to … Continue reading

Posted in Uncategorized | Tagged , , , , , | 1 Comment

Event Delegation in JavaScript

The next logical step up, respectively down-level from using CSS3 Selectors together with JavaScript libraries to select specific DOM elements, is to write your own JavaScript to control your markup. So in order to completely seperate behaviour (JavaScript) from presenation … Continue reading

Posted in Uncategorized | Tagged , , , , | Leave a comment

Load Child Elements of DOM in Array

Howto load multiple Child Elements of any DOM Element into an Array. Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

ExternalInterface Call with AS3 and Javascript

How to properly communicate between Javascript and Flash AS3 Continue reading

Posted in Uncategorized | Tagged , , , , , | 4 Comments