What is Defer Parsing of javascript? It is an important step to improving page load times and more importantly the time it takes to display the page on initial load. In order to load a page, …
Scripting Archives...
A scripting or script language is a programming language that supports scripts. Find here list of Shell, Perl, Python, Bash scripting tutorials.
JavaScript to Validate Email and Password Fields on Form Submit Event
The idea behind JavaScript form validation is to provide a method to check the user entered information before they can even submit it. JavaScript also lets you display helpful alerts to inform the …
Read Article about JavaScript to Validate Email and Password Fields on Form Submit Event →
My Favorite 5 JavaScript Canvas Libraries – HTML5
The HTML5 <canvas> element is used to draw graphics, on the fly, via scripting (usually JavaScript). The <canvas> element is only a container for graphics. You must use a script to …
Read Article about My Favorite 5 JavaScript Canvas Libraries – HTML5 →
JavaScript to Validate Username and Phone Fields on Form Submit Event
Form validation used to occur at the server, after the client had entered all necessary data and then pressed the Submit button. If some of the data that had been entered by the client had been in …
Read Article about JavaScript to Validate Username and Phone Fields on Form Submit Event →
How to Enqueue Scripts into Child Theme in Genesis Framework
Generally, it’s a good idea to include JavaScript/jQuery libraries and plugins at the bottom of the page, just before closing the body tag. The reason is pretty simple, HTTP/1.1 specification suggests …
Read Article about How to Enqueue Scripts into Child Theme in Genesis Framework →
Some of my Favorite JavaScript Tips and Tricks Tutorials
Demo 1. How to Check if String Contains another Substring [crayon-600f485191de9060342235/] 2. How to Remove Array Element by Value? [crayon-600f485191deb016731973/] 3. How to Move Listbox Values …
Read Article about Some of my Favorite JavaScript Tips and Tricks Tutorials →
How to Iterate through JSONArray in JavaScript
Sometimes you have to handle some type of array (JSONArray, int Array, etc) at client side, i.e. in jsp or html file. And you want to iterate this array in JavaScript. How is this possible? I've …
Read Article about How to Iterate through JSONArray in JavaScript →
How to Refresh DIV Content Without Reloading Page using jQuery?
In my previous example I've explained you, how to refresh data on JSP page coming from Spring MVC Controller and refresh using JQuery.. You can take a look at it here. This article will help you to …
Read Article about How to Refresh DIV Content Without Reloading Page using jQuery? →