This article will show briefly guide you through how to smoothly animate a background color change using jQuery. jQuery Version:…
When rounding decimals, there are some built-in javascript functions that can help you with the basics var num = 10;…
Here is a quick and simple way to add a fading image rotator to your website, using CSS and JavaScript…
ASP.NET has a Page.Validate() method that is used to programatically validate an ASP.NET Form, however, Page.Validate() is a server side…
This post shows you how to create a basic popup window using Java Script as well as a reference list…
Create and append a HTML element dynamically using javascript. var divTag = document.createElement(“div”); divTag.id = “divID”; divTag.setAttribute(“align”,”center”); divTag.style.margin = “0px…
You may want to direct the browser view to a particular part of your page, either when the page is…
Use: String.fromCharCode(charCode) e.g: var str1=String.fromCharCode(65) will return “A” charCodeAt(index) returns the char code for the character at a given index…