A simple message ticker in which each message is associated with a unique URL, and clicking the button will take the surfer to a different URL. <form name="slideshow"><div align="center"><center><p><b> Update</b><br /><textarea rows="5" name="S1" cols="30" wrap="virtual" readonly style="border-style:... (Continue reading)
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)
Its very easy to get IP address using javascript and SSI, Javscript is a client side script and it doesnt have the capablity of finding out the ip address by itself so we are using SSI along with javascript. Use SHTML... (Continue reading)
Here’s a simple but flexible javascript popup function. This effect is known as a chromeless window. This usually means that the window is resized and the browser features (nav buttons, address field, scrollbars, resize handle, and favorites) are hidden. Javascript Source... (Continue reading)
Hello this is a simple tutorial which shows how to add a popup window using javascript Add the below javascript code on your webpage. <script language="javascript" type="text/javascript"> var win= null; function OpenNewWindow(mypage,w,h,myname){ var winl = (screen.width-w)/2; var wint = (screen.height-h)/2; settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,toolbar=no' win=window.open(mypage,myname,settings) if(parseInt(navigator.appVersion) >= 4){win.window.focus();} } // end script here... (Continue reading)