Justin Cooney
Web Development Tips and Examples
Category: HTML
-
Google offers a lot of really cool functionality through its Google JSAPI. Features range from APIs to render your data in a number of graph or custom table formats. You can preview some of the available options at the Google Code Playground. In this article I will investigate one of the charting options available through…
-
Manipulating DOM elements is an important task in any language. Many JavaScript add-on libraries such as JQuery simplify addressing particular aspects of the DOM. However I think it is still very useful to know how to do the equivalent action in pure JavaScript.
-
The question of the day is how to use a regular expression to select the last instance of a word in a string of text. Finding the first instance is quite straightforward, but finding the last isn’t as intuitive.