Beginner

How to Use JavaScript to Detect Devices

The great thing about JavaScript is how it enables you to dynamically make changes to your code based on certain events or conditions. One such condition that might cause you to want to make changes to  your code (or at least some slight modifications) is which type of device is being used to view your […]
Read the rest of this entry »

6 Unique jQuery Plugins for Background Effects

Ever feel like the backgrounds of your web pages always end up being just a little bit boring? As a web developer, it can be hard to determine how to add some life into your backgrounds, and it can also be time consuming to write your own code to do so. If you're looking for […]
Read the rest of this entry »

How to Find the Coordinates of Your Mouse Position

Did you know you can use jQuery to find the coordinates of your cursor? It only takes a few lines of code to get the x and y coordinates of where the mouse is positioned on a page. With these coordinates, you can execute other functions and lines of code based on where the cursor […]
Read the rest of this entry »

Handy jQuery Code Snippets for Textboxes

Code snippets are great time savers as these are essentially just reusable pieces of code. Implementing client side validations can be done using jQuery, as well as some other basic tasks like clearing value or enabling and disabling textboxes. This post provides a list of useful jQuery code snippets for handling textbox related tasks with […]
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 »

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 »

Responsive Menu
Add more content here...