JavaScript and jQuery Tutorials

jQuery 3.3.1 Download Options - Crunchify Tips

Cool and useful jQuery Tips, Tricks and Solutions

jQuery is a new kind of JavaScript Library. It is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. Use of the jQuery library is growing and growing (just released

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 actually draw the graphics. Canvas has several methods for drawing paths, boxes, circles, characters, and adding images. Here is a

Some of my Favorite JavaScript Tips and Tricks Tutorials

Demo 1. How to Check if String Contains another Substring <h2> 1. How to Check if String Contains another Substring?<br> </h2> String 1: <input id="foo" type="text" value="eBay Google Paypal Yahoo"> <br> String 2: <input id="bar" type="text" value="Google"> <br> <br> <button onclick="checkstring()">Click to check if String 1 contains String 2</button> <script>