Category Archives: jQuery

Websanova wModal jQuery Plugin

Most of the jQuery modal plugins out there had either not enough options, or too many and weren’t too flexible either way. I wanted to create a modal system that was very flexible that came with some nice options out … Continue reading

Posted in jQuery | Leave a comment

Simple, Lighweight jQuery Pagination Plugin

After some frustration trying some jQuery pagination plugins I found on Google, many of which were written using jQuery 1.3 or 1.4, I decided to write a new one as it seems one was needed. This pagination plugin is very … Continue reading

Posted in jQuery | Leave a comment

jQuery .clear() – Clearing Element Contents Using a Timer

This is a handy little method to have laying around. It allows you to populate an element and clear it after a certain amount of time. You simply provide a string as a message and optionally provide a delay and … Continue reading

Posted in jQuery | Leave a comment

jQuery .cssAll() – Retrieving Multiple CSS Properties

The current implementation of the .css() method in jQuery allows us to set multiple properties to an element, but only allows us to pull one property at a time. This is a little function I wrote for myself as I … Continue reading

Posted in jQuery | Leave a comment

10 Awesome jQuery Rating Plugins

This is a collection of jQuery rating plugins a few pure CSS implementations at the bottom of the list. They range from large to small, some more fancy than others and some with additional options should you need them. You … Continue reading

Posted in jQuery | Leave a comment

The Ultimate Guide to Writing jQuery Plugins

I have written a few articles about jQuery Plugin Development in the past which readers seem to have been interested in, but I have since then written many more plugins and have thus picked up a few more tips and … Continue reading

Posted in jQuery | 3 Comments

10 Awesome Free jQuery Tooltip Plugins

It seems jQuery tooltip plugins have become the “Hello World” of jQuery plugin development with more tooltip plugins out there than one cares to keep track of. I spent a lot of time looking for tooltip plugins to use on … Continue reading

Posted in jQuery | Leave a comment

jQuery Max Character Counter Plugin

This little plugin was originally designed to limit the amount of characters that can be typed into the textarea element which does not support the maxlength attribute like an input element does. With HTML5 this is no longer required as … Continue reading

Posted in jQuery | Leave a comment

HTML5 jQuery Paint Plugin

Websanova Paint is a HTML5 canvas based jQuery plugin. It allows you to free paint on a canvas area with various shapes and colors including an eraser. It also features the fantastic Websanova Color Picker allowing you to set both … Continue reading

Posted in HTML5, jQuery | 3 Comments

How to Write Your Own JSFiddle (In 15 Minutes or Less)

This weekend I decided to build my own version of JSFiddle, a small little web service that allows you to test and share HTML, CSS and JavaScript code. It’s actually quite simple to write and only requires a few lines … Continue reading

Posted in JavaScript, jQuery | 3 Comments