Category Archives: Javascript

Crop image using jQuery

The crop plugin takes an IMG element and crops them to the dimensions given. The result is a DIV with a background image with the height and width and an offset. The new DIV should also carry across the existing … Continue reading

Accessible Slider with Select element using jQuery

This plugin allows jQuery UI Slider plugin to be generated using progressive enhancement. The plugin scrapes the data from a select element and generates a jQuery UI Slider in its place, acting as a proxy to the select element (regardless … Continue reading

Expandable box using CSS

In HTML, if you don’t specify a specific width, block-level elements are vertically expandable by their nature. Think of an unordered list. That list will grow be be as big as it needs to be to fit all of it’s … Continue reading

Create custom corners using jQuery

Cornerz is a bullet proof curved corners plug-in for jQuery using Canvas/VML. Features inclue * Anti-aliased curves. * Fast – no excanvas. * Support for any size radius and border width with minimal performance increase. Resource: Sample | Tutorial

Drag and drop table content with JavaScript

Tricky drag and drop contents of a table between cells using Javascript. Useful plugin… Resource: Sample | Tutorial

Simple Text Resizer using jQuery

Create a simple text resizer which can be added to your page. Resource: Sample | Tutorial

JavaScript-based browser history event manager

dsHistory is a small, cross-browser JavaScript library that can be used in web applications to handle the browser’s back and forward button events. As the back and forward events are raised, functions that the developer had previously pushed onto the … Continue reading

9 Javascripts snippets that can make your coding life easy…

This set of 9 javascript snippets are must have JS scripts which can help you in creating clean websites & web apps. You would have used these scripts in many ways as part of developing websites… #1 : A Single … Continue reading

AutoSnippet – automatic snippet generator for HTML and JavaScript

Code snippets posted online are a great source of knowledge and a simple way to share experience and to reuse code. As developers we always look to see if there is a ‘code example’ which we can modify to our … Continue reading

Smooth counter/timer using Prototype

Add a smooth counter/timer till a page loads or db access. Interesting plugin using javascript/prototype… Resource: Sample | Tutorial