Posted by Rob Anderton on April 10th, 2009 @ 00:01 – 0 comments
Updated on April 10th, 2009 @ 00:11
Tagged with ajax
Let’s say we have a JavaScript function that looks like this:
function plot(options) {
options = options || {};
this.onUpdate = options.onUpdate;
//
// more code to do something interesting
//
}
Read more of this entry
Posted by Rob Anderton on September 13th, 2008 @ 18:15 – 1 comment
Updated on October 30th, 2008 @ 08:37
Tagged with ajax
I’ve always enjoyed a kind of love/hate relationship with JavaScript, something which I think stems from my early exposure to using it on Microsoft platforms in the late 90’s, using half-baked debuggers, inconsistent browsers and a huge degree of trial and error. It’s not that I can’t write clever things in JavaScript, just that it’s not my most favourite job: if I can delegate to someone else I usually will!
Last week I was left with no choice but to roll up my sleeves and get coding: I was putting together a financial trading application prototype for one of our new clients and wanted to use JavaScript and JSON to periodically update pricing information.
Read more of this entry