Tag Archives: javascript

Useful jQuery Snippets

Below is a collection of must-have jQuery Javascript snippets, from detecting browsers to auto-switching stylesheets. I’ve put together a collection of the most useful and interesting jQuery snippets, most of the code requires knowledge of Javascript to get started, as … Continue reading

Posted in Javascript | Tagged , , | Leave a comment

Simple jQuery Image Rollover

One of the more effective things jQuery can be used for is creating eye catching roll-over effects on images, the code below is a short example of how you can achieve this using custom HTML attributes and serving a whole … Continue reading

Posted in Javascript | Tagged , , | Leave a comment

Simple jQuery Preloader Plugin

After several searches for a pre-loading plugin for jQuery I came up short – they either did too much and had hundreds of options I didn’t want, or they were packaged with something else had a lot of code I … Continue reading

Posted in Javascript | Tagged , , | 4 Comments

jQuery Hide/Show Button

This is just a small example of how you can use jQuery to make an effective show/hide button(s) on a page with a few lines of code. It will support multiple instances per page and use it with HTML markup, … Continue reading

Posted in Code, Javascript | Tagged , | 4 Comments

jQuery ‘AjaxLinks’ Plugin

I previously wrote an article showing how you can turn a normal ‘A’ link into an ajax request and place the returned content into divs. This does the same job but used as a jQuery plugin with more customizable options … Continue reading

Posted in Code, Javascript | Tagged , , | Leave a comment

Google Gears: LocalDB Example

I have recently been playing around with google gears; Gears is an open source project that enables more powerful web applications, by adding new features to your web browser such as interacting with the desktop, storing local data and running … Continue reading

Posted in Code, Javascript | Tagged , , , | Leave a comment

Easy JQuery AJAX Links

This is something pretty basic, but I thought it would come in handy for people that might want to use JQuery AJAX but doesn’t want to write a lot of code to do it. The following code will allow you … Continue reading

Posted in Code, Javascript | Tagged , , | Leave a comment