Archive for September, 2010

What is jQuery.noConflict()

What is jQuery.noConflict()? Well, jQuery is popular because there are plenty of useful, simple and easy to use plugins. But while using jQuery plugins, sometimes we include other libraries like prototype, mootools, YUI etc. The problem comes when one or more other libraries are used with jQuery as they also use $() as their global […]
Read the rest of this entry »

jQuery Code: Change text to Uppercase

Below jQuery code change text to UPPERCASE. $(document).ready(function(){ var strVal = 'jquery by example rocks!!' alert(strVal.toUpperCase()); }); See live Demo and Code I have created a plugin called "Setcase" which can be used to convert text to uppercase, lowercase, title case and pascal case. It starts converting text to case as soon as user starts […]
Read the rest of this entry »

How to Zoom an image using jQuery

You must had seen the zoom in and zoom out functionality for images on many sites. We can very easily achieve the Zoom In and Zoom Out functionality using jQuery toggle method. It is really simple. Let me first tell you the logic behind the implementation. Initially when document is ready then we will set […]
Read the rest of this entry »

jQuery Tip: How to get mouse cursor position

In this jQuery tip post, We will see how can we get the mouse cursor position using jQuery. Earlier I had posted about Provide highlighting effect on mouseover and mouseout, Find which mouse button clicked using jQuery and How to use hover method in jQuery. And in this post, find jQuery way to get the […]
Read the rest of this entry »

Responsive Menu
Add more content here...