Category Archives: Prototype

The sliding date-picker – Awesom Prototype Plugin

Sliding date-picker enables you to pick dates with a simple slider bar. By dragging the bar over the time-line, the dates change instantly. Besides this, when the user decides to manually change the dates, the bar is automatically adjusted to … Continue reading

Snippet – Prototype: Object extending

Simple snippet to learn object extending in Prototype.. Object.extend = function(object, extend){ for(propety in extend)object[propety]=extend[propety]; }; /* Example */ Object.extend(String.prototype, { camelCase : function(){return this.replace(/-(.)/gi,function(a1,a2){return a2.toUpperCase();});}, share : function(a1){var ret=[];for(var x=0;x<this.length;x+=a1){ret.push(this.slice(x,x+a1));};return ret;} });

Amazing image manipulation using Javascript & PHP

Phototype script is a client/server-side script which allows you to create amazing image manipulation techniques like photoshop from your browser. This script makes use of Prototype & PHP/GD Resource: Sample | Tutorial

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

Password strength meter using Prototype & Scriptaculous

Ultimate password strength with visual/dyanamic indicator as you type using prototype/scriptaculous. Resource: Sample | Tutorial

Create easy floating windows using Prototype

Mydows is a small library of javascript functions that sit above the Prototype Javascript library and aid in the creation and management of free floating windows contained within the webpage. Mydows will also work with the Scriptaculous library for added … Continue reading

Javascript based MP3 player using Prototype

Pimp3 provides you with a simple way of inserting a pure javascript mp3 player (no Flash required) on your site: it loads a playlist of your sound files (.mp3′s) from an external JSON file using Ajax. This source file may … Continue reading

Sleek in-place select widget using Prototype

Proto:IPS is an unobtrusive in-place-select widget similar to the GMail chat select control. Resource: Sample | Tutorial

Calendar – Click-draggable, Range-makeable using Prototype

Timeframe is an Click-draggable. Range-makeable calendar. Resource: Sample | Tutorial

Livegrid – a simple datagrid using Prototype

Live grid control provides a dynamic, scrollable view into large datasets. Data is loaded on demand as the user scrolls through the list, saving server resources and client memory. Useful plugin… Resource: Sample | Resource