Would you like to be notified for every new articles? Please click HERE to subscribe for newsletter.

Blog

JQuery Plugin For Ajax Auto-Suggest

  • Posted on: 22 January 2011
  • By: admin

This jQuery plugin will help you to create an AJAX auto-suggest or auto-complete textfield easily. Some features it has are :

  • Customizable styles via one CSS file.
  • You can set its width to automatically adjust to the textfield's width or your preferred width.
  • You can specify how many characters typed to trigger the auto-suggest.
  • Stay on top of combobox in IE 6.
  • The data transferred from server is using JSON (JavaScript Object Notation).

PHP Download Script

  • Posted on: 15 January 2011
  • By: admin

This is a PHP script that can be used to manage the download process. The advantages of using PHP script for handling the download process is we can prevent user to download the file directly, we can also limit the download speed to the desired speed, and we can also count how many times that file has been downloaded.

The script below has some features such as :

  • Configurable download speed.
  • Resumable download capability.
Tags: 

Transparent Image On Hover With jQuery

  • Posted on: 8 January 2011
  • By: admin

In this tutorial we will try to make the hover effect for the image that we used as link with jQuery. If we move our mouse pointer to the image, then the image will become transparent. And, if we move our mouse pointer out of the image, the transparent effect will be removed so the image will go back to its previous state.

Grid Display With CSS Float Left

  • Posted on: 31 December 2010
  • By: admin

Float left is one of the most interesting property in CSS. By using it we can push the elements to left as far as it can. The float left property can also generate a grid display like below with a very short code.

Item 1
Item 2
Item 3
Item 4
Item 5

Grid display with float left.

Pages