Archive for August, 2012

jQuery Plugin Suites Written in Coffee Script

Mini JS is a collection of useful jQuery plugins that are written in CoffeeScript. CoffeeScript is a little language that compiles into JavaScript. The suite currently consists of a word counter for text area’s, tool tips, simple slider, notifications, alerts, twitter feeds, and a drop down menu. Each plugin is configurable and well documented. They […]
Read the rest of this entry »

Expand textbox on focus using jQuery

Here is jQuery code to expand the textbox onfocus using jQuery. Below code animate and expand the width of a TextBox when it receives focus. $(document).ready(function() { $('#txtSearch').width(150); $('#txtSearch').focus(function() { $(this).animate({ width: 250 }) }); $('#txtSearch').blur(function() { $(this).animate({ width: 150 }) }); });? See result below. See Complete Code Feel free to contact me for […]
Read the rest of this entry »

jQuery UI Slider

The jQuery UI Slider plugin is another cool and effective plugin from jQuery UI library. It makes selected elements into sliders. It also comes with various options such as multiple handles, and ranges. The handle can be moved with the mouse or the arrow keys. I had posted many articles on jQuery UI Slider, which […]
Read the rest of this entry »

Open link on mouseover using jQuery

In today's short post, you will see how to open a link in new window on mouseover or when user takes the mouse on the link. All you need to do is to replace the click event with mousever event. Below jQuery code assign mouseover event to all the element which have ".hoveropen" as css […]
Read the rest of this entry »

jQuery UI DatePicker

jQuery UI DatePicker is most popular and used date picker plugin that adds datepicker functionality to your pages. It can be customized easily for different date formats and languages, restricting date ranges, disabling specific days and other navigation options easily. I had posted many articles on jQuery UI DatePicker, which covers almost everything which one […]
Read the rest of this entry »

5+ Best jQuery File Upload Plugin

Today's post is complied list of best jQuery file upload plugins which are cool and easy to integrate to upload files to your forms or web pages. 1. jQuery File Upload 2. jQuery HTML5 Uploader 3. jQuery uploadprogress 4. Uploadify 5. jQuery Droparea 6. Plupload Feel free to contact me for any help related to […]
Read the rest of this entry »

Responsive Menu
Add more content here...