Automatic Infinit Carousel for jQuery

Automatic Infinite Carousel is a Javascript library for jQuery that allows you to create an image carousel.

automatic-jquery-slide

You can find the tutorial here.

How to use console.log in Firebug to debug web applications

You can easily add lines of code like this:

console.log(“I like it”)

Sometimes, console.log is not available for example if you are not running Firebug or it you are not using Firefox browser. Then you can use this simple function to override console.log to avoid the Javascript error caused by non defined console.log function

// if console is not defined, e.g., Firebug console is not enabled or Non-Firefox browser if (typeof console == 'undefined') { var console = {}; console.log = function(msg) { return; }; }

The jQuery Document Ready!

Next time you forget how to write the jQuery document ready function, here is a snippet that can help you. Just put jquery document ready at Google and find the result.


$(document).ready(function() {
// put your jquery stuff here
});

jQuery Download

You can download the latest version of jQuery from here.

Timeline scroller with jQuery

scroll-list-jquery

This interactive jQuery timeline scroller is built on jQuery. Useful for timeline effects, check out the demo.

Switch Display Options with CSS & jQuery

switch-view-jquery

Swith Display Options is a jQuery library that allows to switch the view in a List. You can easily toggle betweek list type or icons type. See an example here.

Unobtrusive messages using jGrowl

jgrow-jquery
jGrowl is a jQuery library that enables unobtrusive message within browser. The messages are similar to those displayed with X’s Growl Framework. Check out these examples.

Continuous Image scroller in jQuery

jQuery simple scroller
simpleScroll. This jQuery library allows to create image scroller effect with images and/or HTML.

Flip, a great effect in jQuery

Flip jQuery
Flip is a jQuery plugin that flip your elements in four directions.

jQuery Resizable Textarea

jQuery Resizer for Text Area

You can use jQuery Textarea Resizer plugin to create a dynamic height for textarea controls in web pages. Thsi makes possible to resize the textarea control by moving a handle. So, the user can control the Textarea height for its own convenience.

Visit website | Example

« Previous Entries