Using Classes in jQuery

jQuery makes it easy to add a class to a selected element, or elements. Likewise, it makes it easy to remove classes from the element. This allows you easily update your page layout dynamically. You may want to use classes instead of Directly Applying your CSS Rules because it will make updating the design and…

jQuery Selectors

Use of jQuery usually starts with you selecting one or more elements in a web page. Selectors is the start of how you will identify which elements you want jQuery to work on. To start with jQuery, you will typically use the $ (dollar sign) symbol as a shortcut to call jQuery, or jQuery name…

An Introduction to JavaScript – Part II

In the first part of an Introduction to JavaScript, we looked at basic syntax, variables, comments, and displaying information to the user. Now we are going to expand upon that base to look to the next options. Making Decisions Almost every program will need to only run certain sections of the code. This means skipping…