Posted on November 16, 2009, 23:21, by stefan, under
coding,
web.
YUI 3 uses modules to group functionality and to only load what is used. This post describes how to create custom modules. The typical way modules are used is within the use() statement: YUI().use(‘node’, ‘event’, function(Y) { // your stuff here }); In the above example the modules node and event are loaded. Let’s see [...]
Posted on November 7, 2009, 6:56, by stefan, under
coding,
web.
Using plugins in YUI 3 is a way to add functionality to existing objects in YUI (very much like you would use prototype to augment a function to a normal JavaScript object). Objects in YUI all derive from Y.Base. Note that this post is about YUI 3 and not YUI 2. However, the current YUI [...]
Posted on October 18, 2009, 21:55, by stefan, under
coding,
web.
It is clear that IE6 is not going away just yet, at least not for mainstream websites targeting a large (and non-tech) audience. Quite some time and effort is put into making design and functionality work in IE6 which otherwise works perfectly well in more modern browsers. This is inefficient, but just because IE6 support [...]
Posted on April 8, 2009, 17:08, by stefan, under
web.
I came across the warning “Internet Explorer has modified this page to help prevent cross-site scripting.” which is triggered by the IE8 security filter. However, IE gives no clues of why the warning was triggered or what was modified to prevent it. Annoying. To get some more information you must download Microsoft Application Compatibility Toolkit [...]