4 Best Tools for Validating Your jQuery Code

New to jQuery and looking for some help to make sure that your code is correct? Or are you a seasoned JavaScript pro who can't seem to find that one little bug in your code that seems to be messing everything up? No matter what your level of coding expertise is, chances are you're going […]
Read the rest of this entry »

How to Refresh One Section of a Page

There are plenty of times where you might want to refresh only part of your page's content, leaving the static content to be, well, static, and refreshed at the user's discretion. Reloading an entire page on a user can be jarring, confusing, and doesn't make for a great user experience. However, if your page features timely […]
Read the rest of this entry »

jQuery Snippets: Check/Un-Check All Function

This easy-to-implement jQuery code snippet is super useful, and can be used to create a functionality that will check OR uncheck any checkboxes within a particular fieldeset. So for example, if your HTML looks like this: <fieldset> <div><input type=“checkbox” class=“checkall”>Check All</div> <div><input type=“checkbox”>Check Me</div> <div><input type=“checkbox”>Check Me</div> <div><input type=“checkbox”>Check Me</div> </fieldset> Your jQuery code to […]
Read the rest of this entry »

jQuery & JavaScript Resources: Books

If you’re a bookworm looking to learn JavaScript or jQuery, this list is for you. Any of these books are great resources to learn the fundamentals of both JavaScript and jQuery and will give you a great foundation to start learning both of these languages.   1. JavaScript and jQuery: Interactive Front End Web Development […]
Read the rest of this entry »

Form Validation Snippets: Email Validation with jQuery

With jQuery, it’s possible to write code that executes client-side validations for your forms and input fields. A common validation to make is to check whether or not an email address that’s entered into an email field is actually a valid email address (or at least in valid email address format). The following is a […]
Read the rest of this entry »

Useful jQuery Code Snippets for Handling CSS

If you're not already familiar with code snippets, they are handy time savers! Essentially, the feature you want to implement is already created by someone else and is available for reuse. Handling CSS with jQuery can sometimes be tricky and time consuming. This post provides a list of useful jQuery code snippets for handling CSS […]
Read the rest of this entry »

Responsive Menu
Add more content here...