All Javascript

Using Head.js to Load All Your JavaScript

In the past few years, client side frameworks/libraries have become very powerful and offers great features to implement complex functionalities on the client side, instead of relying on server side. This is really great for developers, but it has also made life difficult when it comes to managing multiple resources. One disadvantage is that loading […]
Read the rest of this entry »

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 »

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 »

10 jQuery Plugins to Enhance Tables

In this post, find a list of jQuery plugins to enhance your HTML tables. Using these plugins you can redesign your table, create a table from CSV or JSON, apply sorting and filtering the table content, freeze your table header row and create responsive tables. 1. Tabulator Tabulator is an easy to use table generation […]
Read the rest of this entry »

15 New JavaScript Libraries for Developers

A JavaScript library is a library of pre-written JavaScript which allows for easier development of JavaScript-based applications, especially for AJAX and other web-centric technologies. The primary use of JavaScript is to write functions that are embedded in or included from HTML pages and interact with the Document Object Model (DOM) of the page. For this […]
Read the rest of this entry »

20 Best JavaScript Minifying Tools

Minifying or code compression is a technique (also called code minimization or code compression) of removing all unnecessary characters from the source code like unwanted white space characters, new line characters, comments, etc. It does not harm the functionality of the source code. It however, improves load time (and your web app’s performance) because the […]
Read the rest of this entry »

Responsive Menu
Add more content here...