Archive for 'Javascript'

YUI3: My First Experience

With the Yahoo! User Interface (YUI) javascript library now the library of choice at IPC I thought it was about time to start playing with it. Background to Javascript Frameworks My first experience of a javascript library was to build a debug console for my framework. Version one of the console was built in jQuery [...]

YUI errorLogging

As we have decided to start using the YUI javascript framework, I rewrote the logging tool I did for jQuery. I understand there’s already a logging tool for YUI, but if you don’t want to initiate the logger, here’s a quick fix: YAHOO.namespace(’IPC’);   (function(Y) {   var Log = { debug : function(message) { [...]

JavaScript frameworks

We’ve been looking around at what’s available and what we think could possibly suit exemplar best.

jQuery error logging

As I may very well be doing alot of development in jQuery in the up and coming future, I decided to start by writing an exception throwing and logging plugin.