All jQuery Codes

Create Tooltip using jQuery UI library

I had already posted that jQuery UI 1.90 is released and there are some widgets which are introduced with jQuery UI 1.90. One of the new widget is Tooltip. In this post, you will learn how to create tooltip using jQuery UI library. Related Post: Tutorial for creating stylized tooltip using jQuery Before we begin […]
Read the rest of this entry »

Convert Text to Links using jQuery

Yesterday for one of my requirement, I needed to convert bold text of the a div element to hyperlink using jQuery. To do this, jQuery provides wrap() method which is used to wrap HTML element around each of the matched elements. Below jQuery code, uses jQuery wrap() method to wrap the bold text to hyperlink. […]
Read the rest of this entry »

How to format price using jQuery

Formatting and validating price input text fields are common. One need to write code for formatting as well as for validating. But in today's post, You will find a jQuery plugin which can solves your problem. You don't have to do any kind of validation or formatting. The plugin will take care of everything. jQuery […]
Read the rest of this entry »

Fading Image effect using jQuery

In today's post, You will see a very interesting and attractive fading effect on images. I am talking about is to fade all the other images, except the image which have the focus. To see the effect, take mouse on the follow us images (Facebook, twitter etc..) on my blog and check out the fading […]
Read the rest of this entry »

How to remove/delete selected item from a dropdown using jQuery

In this post, find jQuery code to remove or delete selected item from a dropdown list using jQuery. $(document).ready(function() { $('#btnDelete').click(function() { $('#ddlList option:selected').remove(); }); });? See result below See Complete Code Feel free to contact me for any help related to jQuery, I will gladly help you.
Read the rest of this entry »

How to get previous page URL using jQuery

jQuery code to get the previous page URL. The referrer property returns the URL of the document that loaded the current document. $(document).ready(function() { var referrer = document.referrer; }); The referrer property is supported in all major browsers. But there is a problem here. It is quite possible that Page URL is shared through social […]
Read the rest of this entry »

Responsive Menu
Add more content here...