Category Archives: JavaScript

The Modulus Operator

I was looking through my JavaScript operators the other day and came across the modulus operator.  The modulus operator is used in almost all programming languages, and usually it is represented by a “%” sign.  It performs what is called … Continue reading

Posted in JavaScript, PHP, Web Development | Leave a comment

jQuery 1.5 Released

This week a new version of jQuery, Version 1.5 was released. This release offers some new improvements and bug fixes from the previous 1.44 version release. JQuery is today’s most popular JavaScript library for making client side coding easier. It … Continue reading

Posted in JavaScript | Tagged , | 1 Comment

Dynamic Table Display with CSS, Javascript, and jQuery

I have a very large and long table I’m working with that is in an outline format. The table, could be any table you want to break into parts, this one just happens to be an outline of projects, goals, … Continue reading

Posted in JavaScript | Tagged , , | Leave a comment

The History of Javascript

I am still not really clear about the semantics of the word “JavaScript” so I tried to do a little research. Technically speaking it is the sun trademark implementation of the ECMA-262 standard and it was also the force behind … Continue reading

Posted in JavaScript | Tagged | Leave a comment

JavaScript Reserved Words

Variable names in JavaScript can contain letters, numbers, underscores, and the dollar sign. So a stand alone “$” is a legal variable.  You can not start with a number, and names are case-sensitive. This list includes all reserved words, global … Continue reading

Posted in JavaScript | Tagged | Leave a comment