Archive for June, 2013

Check for ‘#’ hash in URL using jQuery

In this short post, find jQuery code to check if URL contains "#" (hash) or not. This can be checked via location.hash property provided by JavaScript and same can be used in jQuery. $(document).ready(function(){ if(window.location.hash) { // # exists in URL } else { // No # in URL. } }); Feel free to contact […]
Read the rest of this entry »

jQuery Plugins For Language Translation

Find list of jQuery plugins which can be integrated in your website for language translation. These are useful if you are building a multilingual website which offers many language to end user. You can also use this plugins as Translator as well. Enjoy!!! Related Post: 6 Best jQuery Vertical & Horizontal News Ticker Plugins jQuery […]
Read the rest of this entry »

5 Free jQuery Image Map Marker Plugins

Here is a complied list of 5 Free jQuery image map marker plugins which are quite handy if you wish to highlight or make your maps interactive using marker. Not only maps, with these plugins you can mark any picture to make it interactive with descriptions. Related Post: 5 jQuery Image Slider and Slideshow 5 […]
Read the rest of this entry »

Get Client IP address using jQuery

In this post, find jQuery code to get Client's IP address. There are 2 free online services which allows you to get Client IP address. 1. jsonip.com: is a free utility service that returns a client's IP address in a JSON object with support for JSONP, CORS, and direct requests. It serves millions of requests […]
Read the rest of this entry »

10 jQuery Shopping Cart Plugins

Find below a complied list of 10 free jQuery shopping cart plugin and tutorial that are suitable for e-commerce website. These plugins can be used for showing Product images, for image zoom, 360 degree display of product, integrate with Shopping Cart for payment, showing list of stores and for many other features. Related Post: 5 […]
Read the rest of this entry »

jQuery .end() and Chaining

Before you go further, I assume that you know What is chaining in context of jQuery? If not, then first read "What is Chaining in jQuery?". To summarize Chaining in jQuery means to connect multiple functions, events on selectors. Main advantage of using chaining is that it makes code look clean and gives better performance. […]
Read the rest of this entry »

Responsive Menu
Add more content here...