Archive for December, 2012

Make a div disappear or appear after few seconds with jQuery

You must have seen this effect when a particular element is visible for few seconds and then it fades out. Such things are used for notifications. You can also implement the same in your web application with jQuery. It is really very simple. Find below jQuery code to show the div for 3 seconds and […]
Read the rest of this entry »

Superslides: jQuery full screen slider plugin for 2013

A full screen background slideshow jQuery plugin called "Superslides".Superslides is a full screen slider for jQuery. It's designed to be as flexible as possible, while maintaining a reasonable code base and good browser compatibility. It's 4.3kb minified (9.4kb uncompressed). Usage Basic usage is as follows. See options below for things you can change. $('#slides').superslides(options_hash) Options […]
Read the rest of this entry »

Top jQuery Photo Tagging Plugins

Photo/Image tagging is indeed an amazing feature and you must have seen it on Facebook or Flickr. But how about implementing photo tagging feature into your website? If yes, then today we present 6 different jQuery image tagging plugins and tutorials for you. These are just amazing. jQuery Photo tagging Plugin jTag : jQuery plugin […]
Read the rest of this entry »

Few Interesting things with jQuery UI DatePicker setDate()

Earlier today, I posted about "How to Set Current Date in jQuery UI Datepicker" using setDate() method provided by jQuery UI Datepicker library. But there are few interesting things which you can also do with setDate() method which you might not be knowing. setDate() method takes 'date' as argument but this argument either can be […]
Read the rest of this entry »

jQuery UI Datepicker : Set Current Date

To set current date in control to which jQuery UI datepicker bind, use setDate() method. Pass date object which needs to be set as an argument to setDate() method. If you want to set it to current date then you can pass 'today' as argument. So, jQuery code to set current date may look like […]
Read the rest of this entry »

jQuery code to reverse ordered list child elements

In this short post, Find best method to reverse the order of child element on an ordered list using jQuery. $(document).ready(function() { $("#btnReverse").click(function() { var list = $('ol'); var listItems = list.children('li'); list.append(listItems.get().reverse()); }); });??????? See result below Feel free to contact me for any help related to jQuery, I will gladly help you.
Read the rest of this entry »

Responsive Menu
Add more content here...