Collective: Drag and Drop Files in BrowserJuly 7, 2010

This article shows how to implement Drag and Drop files in browser. Along with JavaScript code there are tip how to implement server side backend to handle uploaded files. Source http://www.ajaxline.com/drag-and-drop-files-in-browsers Demo http://www.ajaxline.com/drag-and-drop-files-in...

read more direct link

Collective: Animated table sortJune 21, 2010

This plugin allows you to animatedly sort a table based on a particular column. The various <td>s fly to their new homes, giving a nice effect. It also supports sorting on REGEXP matches. You can also control whether row relationships are maintained, whether it sorts on ascii or numeri...

read more direct link

Fancy Sliding Form with jQueryJune 7, 2010

Today we are going to create a fancy sliding form that shows some validation feedback to the user after each step. This form saves a lot of space and is easy to access - it basically works like a slide show, just that we have fieldsets of a form instead of images. So...

read more

Collective: Analog Clock using Javascript & RaphaelMay 12, 2010

For the clock, I have used images of different dials (which I have downloaded from google) as background. Upon which the clock is drawn through Raphaël.  Luckily, for me, the center of these dials images exactly coincides with the center for clock. Another option I provided in the demo is ...

read more direct link

33 JavaScript Solutions for Sorting TablesOctober 3, 2009

Here is a list of 33 JavaScript table sorting scripts and their sources. Enjoy it! 1. jQuery tablesorter http://tablesorter.com/docs/ 2. Table sorting with Prototype http://tetlaw.id.au/view/blog/table-sorting-with-prototype/ 3. Sorttable http://www.kryogenix.org/code/browser/s...

read more

21 Free CAPTCHA SourcesSeptember 22, 2009

Here is a collection of free CAPTCHA scripts and services than you can easily integrate into your website using PHP or JavaScript: 1. PHP CAPTCHA Library for reCAPTCHA http://recaptcha.net/plugins/php 2. Ajax Fancy Captcha - jQuery Plugin http://www.webdesignbeach.com/beachbar/ajax-f...

read more

JavaScript browser detectionAugust 30, 2009

Here is some very useful javascript for detecting the browser that is accessing a page: var BrowserDetect = { init: function () { this.browser = this.searchString(this.dataBrowser) || "An unknown browser"; this.version = this.searchVersion(navigator.userAgent) |...

read more

JavaScript: Changing location or stylesheet according to device or browserAugust 26, 2009

Developing web applications for mobile phones sometimes brings the need to just create separate content for different devices. Some time ago I had to create a web app that would look pretty on both, the iPhone and some Windows Mobile based device by HTC! In the end it came out to be simpler just ...

read more