Tag Archives: JavaScript

JavaScript Koans

I’m an iOS engineer with a background in robotics who is just diving into front-end web development. At Blazing Cloud, we’ve found that the approach taken by Koans, learning through testing, to be an effective way to understand the core syntax of a new language. Neither of the JavaScript Koans are nearly as fleshed out [...]

Multiline document.write

I was just refactoring some HTML and needed to move some of my markup out of the HTML file and into a JavaScript method so I can re-use it in multiple HTML files. Using document.write, I didn’t want to put all of the HTML on one line, and also didn’t want to have to add [...]

SVG Scripting with JavaScript Part 1: Simple Circle

I recently embarked on the task of converting an interactive Flash widget to SVG (Scalable Vector Graphics) and DHTML. The incentive for this project is primarily to make this widget work on the iPad which does not support the Flash player. SVG has been supported in all major browsers except for IE including mobile browsers [...]