-
Recent Posts
Recent Comments
- John Peden on SFTP with chroot jail on CentOS
- Stephan Kristyn on Update an iframe’s height according to its content
- ion on Update an iframe’s height according to its content
- Update an iframe’s height according to its content | Ajax | Syngu on Update an iframe’s height according to its content
- Mak on ExternalInterface Call with AS3 and Javascript
Archives
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- June 2011
- May 2011
- March 2011
- February 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- September 2009
- July 2009
- June 2009
Categories
Meta
Tag Archives: javascript
JS: Deactivate single Events while using Event Delegation
If you come along one of those instances where you want to disable an event listener you have many options. One of them would be to assign null to the event handler.
Posted in Uncategorized
Tagged eventdelegation, events, javascript, literals, method, objects, oop, singelton
Leave a comment
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
Stringify a user’s text selection in JavaScript
This code reads selected text after a user releases the mouse button. I came up with this technique after I read a questions at Stack Overflow. I never actually used it on any web projects, but it might come in … Continue reading
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
Load Child Elements of DOM in Array
Howto load multiple Child Elements of any DOM Element into an Array. Continue reading
Mask animation with jQuery and CSS
This is a technique I invented myself one year ago and basically is porting masking techniques of Flash over to xhtml. Continue reading
Posted in Uncategorized
Tagged css, html, javascript, jquery, mask, masked, stylesheets, xhtml
3 Comments
ExternalInterface Call with AS3 and Javascript
How to properly communicate between Javascript and Flash AS3 Continue reading
Posted in Uncategorized
Tagged actionscript, as3, DOM, externalinterface, flash, javascript
4 Comments