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 is a simple script in javascript which shows how you can add a link in your website to make your visitors add the webpage to their Browsers Favorits. <html> <head> <script language=”JavaScript”> function AddtoFav() { window.external.AddFavorite(’http://www.mistonline.in/wp’); } </script></head> <body> <button onclick=”AddtoFav();”> Click here to add www.mistonline.in/wp main page to your... (Continue reading)
Want to make sure your web pages are not included in other website frames? Well use this break_out_frame code to stop the madness. Place the following code in the header <script language=”JavaScript” type=”text/javascript”> <!– function jump_out_frames() { if (top.location != location) { top.location.href = document.location.href ; } } –> </script> I would... (Continue reading)