All jQuery Resources

5 Chrome Extensions for jQuery

Find a complied list of 5 Chrome extension in relation with jQuery. These extension helps in speedy development, testing and debugging your jQuery code right in your browser. You may also like: Add jQuery By Example to Google Chrome to search about jQuery 10+ Free/Paid Tools for Cross-Browser Testing jQuery Audit jQuery Audit creates a […]
Read the rest of this entry »

How to copy text from one input textbox to multiple textboxes using jQuery

In this post, find jQuery code to copy text from one input textbox to multiple textboxes while typing or in real time or on paste. To achieve this, give a same class name to all the textboxes in which text needs to be copied. For example, in the below code all the textboxes are having […]
Read the rest of this entry »

How to Limit Number of Characters in Textarea using jQuery

Find jQuery code to limit characters inside textarea control. Below code also handles copy + paste and on drop event. $(function () { var nMaxLength = 150; $("#txtDesc").keydown(function (event) { LimitCharacters($(this)); }); $("#txtDesc").keyup(function (event) { LimitCharacters($(this)); }); function LimitCharacters(txtDesc) { if (txtDesc.val().length > nMaxLength) { txtDesc.val(txtDesc.val().substring(0, nMaxLength)); } else { var nRemaining = nMaxLength - […]
Read the rest of this entry »

10 Free jQuery Social Sharing Plugins

Social medium has become necessity for any website to grow and connect with readers. So here is collection of free jQuery social sharing plugins which allows you to easily create share button, follow button and get content recommendations which helps in you get more likes, shares, followers and keep them coming back. You may also […]
Read the rest of this entry »

10 jQuery plugins for textarea element

Find a complied list of 10 jQuery plugins for textarea input element. These plugins allows you to set characters count limit, make them easily grow/expandable as and when user types. You may also like: Latest jQuery Rich Text Editor Plugins 15 Free Awesome jQuery Text Effect Plugins Awesome jQuery Tab Plugins and Tutorials jQuery Textarea […]
Read the rest of this entry »

10 jQuery plugins for creating floating elements

Having floating element in your website is a new interesting thing. So here is a complied list of jQuery floating plugins to create floating elements like image, sharing buttons, header, footers, text labels, news, notifications, create floating message and many more... You may also like: 6+ Lightweight jQuery Slider Plugins Fading Image effect using jQuery […]
Read the rest of this entry »

Responsive Menu
Add more content here...