Archive for March, 2016

Copy Data to Clipboard Using jQuery

In this post, find jQuery solution to allow users to copy data to clipboard. This solution is quite handy when right click is disabled for your website and also text selection is also disabled. When text selection is disabled along with right click, it’s difficult for users to select the text and then copy it. […]
Read the rest of this entry »

10 jQuery Credit Card Form Plugins

In this post, find a compiled list of 10 jQuery credit card form plugins which are useful for any ecommerce website. Using these plugins, one can easily format credit card information, validate credit card information and detect card type. 1. cardCheck Cardcheck.js is a very small jQuery plugin for e-commerce websites that validates the credit […]
Read the rest of this entry »

15 jQuery Sticky HTML Element Plugins

In this post, find a compiled list of 15 jQuery plugins that can be used to create sticky headers, footers, sidebars or navigation. Some of the plugins in list below allow you to stick any DOM element. These plugins are light-weight and easy to integrate. 1. Headhesive Headhesive.js creates an on-demand sticky header. Specify where […]
Read the rest of this entry »

10 Facebook Style jQuery Plugins

In this post, find a compiled list of 10 Facebook style jQuery plugins which are easy to integrate and allows you to imitate Facebook functionalities like Facebook like button, emoticons, infinite scroll, get photos and albums, create Facebook-like photos and many other things. 1. FaceMocion FaceMocion is a plugin to create Facebook emoticons with jQuery and […]
Read the rest of this entry »

10 jQuery YouTube Plugins

In this post, find a compiled list of jQuery plugins to integrate YouTube videos in your website. These plugins allows you to create YouTube background as video, customize them, create YouTube videos playlist, embed them easily in your website, and create animated video thumbnails, among other features. 1. PreView Tube   A small jQuery plugin […]
Read the rest of this entry »

jQuery Code Snippets for your Future Project

Code snippets are handy and very useful. They do the job for you without much effort. Hold onto these snippets to use for your next project. Change button text when clicked: [javascript] $(document).ready(function(){ $(".button").click(function(){ $(this).val("Some other text"); }); }); [/javascript] Mark external links with an icon [javascript] $('a').each(function(){ if(this.hostname != location.hostname){ $(this).append('<img src="external.png" />') .attr('target','_blank'); […]
Read the rest of this entry »

Responsive Menu
Add more content here...