Home » Archive

Articles tagged with: jQuery

Javascript, jQuery, Magento »

[2 Mar 2011 | 7 Comments]

By default, Magento contains and uses the Prototype javascript library. You can also integrate the other most popular javascript library ‘jQuery‘ in your Magento site. While integrating jQuery in Magento, you might get some javascript conflict and errors as you will be using two javascript libraries (prototype and jQuery) at a time. This is caused [...]

jQuery »

[25 Jan 2011 | 5 Comments]

In this tutorial, I will be showing how you can use AJAX with jQuery. From jQuery, you can send values to php page as GET or POST parameters. You can use load() function OR ajax() function of jQuery to accomplish the AJAX functionality.

jQuery »

[13 Feb 2010 | 21 Comments]

Here, I will show you how to preview Image with grey out background effect. I mean, you will be able to preview large image when you click the thumbnail image. The background of the page will be greyed and the image will be displayed as popup. View Demo || Download Code

jQuery »

[12 Feb 2010 | 4 Comments]

Here, I will show you how to preview Image with Zoom effect. I mean, you will be able to preview large image when you hover the thumbnail image. The image is zoomed when hovered. View Demo || Download Code

jQuery »

[10 Feb 2010 | 10 Comments]

Here, I will show you how to preview Image as a tooltip effect. I mean, you will be able to preview large image when you hover the thumbnail image. The preview is shown as tooltip is shown generally. View Demo || Download Code

jQuery »

[8 Feb 2010 | No Comment]

Here, I will show you how to show tooltip with jQuery. It’s very simple and easy. I have a href link. I will show you, how to show tooltip when you hover your mouse over the link. The title of the href link will be shown as tooltip. View Demo || Download Code

jQuery »

[5 Feb 2010 | One Comment]

Here, I will be showing you how to create a cool bouncing navigation with jQuery and jQuery easing plugin. The content appears with the bouncing effect as you navigate through the menu. You need jQuery Library and the jQuery easing plugin. But you need not worry, I have zipped them all in the download file.

jQuery »

[2 Feb 2010 | No Comment]

I have created a bit of image animation with the Transfer effect of jQuery UI. By animation, I just mean fade in and out. But the transfer effect makes it so beautiful :). The Transfer effect can be used with effect() method. This Transfers the outline of an element to another element. Very useful when [...]

jQuery »

[1 Feb 2010 | 3 Comments]

I have made a very simple jQuery slideshow. When you click the play button, then the images changes with fade in and fade out effect. View Demo || Download Code

jQuery »

[28 Jan 2010 | 5 Comments]

In this article, I will be showing you how you can replace string, div content, and image src value with jQuery. You can do this by replace() function in jQuery.

jQuery »

[26 Jan 2010 | 2 Comments]

You can use jQuery queue() function with setTimeout() function to set some time interval between events in jQuery. Like, you have run one event and wanted the browser to wait for some time to run the next event. At this instance, queue function is very helpful. Suppose, you wanted an image to fade in and [...]

jQuery »

[22 Jan 2010 | 2 Comments]

It’s very easy to print array and object with jQuery. You can do it with jQuery.each() function. The jQuery.each() function can be used to iterate over any collection, whether it is a map (JavaScript object) or an array. Here is the javascript code to print array or object: Here, arr is a numeric array. Its [...]

jQuery, PHP »

[20 Jan 2010 | 19 Comments]

In this article, I will be showing you how to create jQuery AJAX tabs in a very simple and easy way. View Demo || Download Code Here, tabs.php contains the php code which contains data to be displayed.

jQuery, PHP »

[29 Jun 2009 | 10 Comments]

Here, I am going to show you how easy it is to upload multiple files with the help of jQuery and PHP. I suppose that you are familiar with php and apache web server.