Blog

Camel Case In JavaScript

Almost a month ago, I posted about creating a camel case function in VBScript. Now I think it is time to see a simple way to implement this function in JavaScript: Believe it or not, that is all the code you will need for the following to work: You will Read more…

By Chris West, ago
Blog

IE7 JavaScript Instruction Limit

Have you ever wondered why so many people hate Microsoft? For instance, people are always talking badly about the workarounds that you have to do in order to make things work in Internet Explorer. For me, when first starting developing web pages, all I knew was IE, therefore I felt Read more…

By Chris West, ago
Blog

Parsing A Name In JavaScript

Usually, when people first start dealing with user input, they have to parse information such as a person’s name. I know I have had to do this at some point in almost every language that I have programmed in. One of the best ways to go about parsing a full Read more…

By Chris West, ago
Blog

Backup & Restore Objects in JavaScript

As I was thinking about the swap() function that jQuery uses internally, I thought some people may also find a backup() function and restore() function useful. For instance, you may get tired of worrying about using the var keyword inside of a function in order to prevent the variable from Read more…

By Chris West, ago
Blog

JavaScript – swap

A few weeks ago, while analyzing some of the CSS code for jQuery, I noticed a call to the swap() function. After looking through the definition of the function and reading the reason for using it in the documentation, I realized that this function might be pretty useful for others. Read more…

By Chris West, ago