Here is a simple script for creating calendar on webpages <script LANGUAGE="JavaScript"> //Code from Mistonline.in <!-- Begin monthnames = new Array( "January", "Februrary", "March", "April", "May", "June", "July", "August", "September", "October", "November", "Decemeber"); var linkcount=0; function addlink(month, day, href) { var entry = new Array(3); entry[0] = month; entry[1] = day; entry[2] = href; this[linkcount++] = entry; } Array.prototype.addlink = addlink; linkdays = new Array(); monthdays =... (Continue reading)
The information isn’t going to be saved on the localhost database — it needs to be stored in a remote database that I cannot connect directly to.I thought about all of the possible solutions for solving this challenge and settled... (Continue reading)
uniqid () function, This function has two parameters we can set. The first is the prefix. This is what will be appended to the beginning of each ID. The second is more_entropy. If this is false or not specified it will... (Continue reading)
Hi here we can see how we can call fucnctions using some timers available in javascript. <script type=”text/javascript”> function setToRed() { document.getElementById(”colourButton”).style.color = “#FF0000″; setTimeout ( “setToBlack()”, 2000 ); } function setToBlack() { document.getElementById(”colourButton”).style.color = “#000000″; setTimeout ( “setToRed()”, 2000 ); } </script> <input type=”button” name=”clickMe” id=”colourButton” value=”Click me and wait!” onclick=”setToRed()”/> VN:F [1.5.7_846]please... (Continue reading)
A simple script that demonstrate how to dispay different images day by day on your website from suday to saturday, what you have to do is just copy this script [ Make Sure Of Quotes While Copying As I Always... (Continue reading)