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 CSS tutorial. What is CSS? CSS is the technology used to make the layout for webpages. They are Cascading Style Sheets, used to style your HTML documents. They are slowly replacing tables as the preferred medium to layout your pages. They free your... (Continue reading)
CSS or Tables? What is CSS? CSS stands for cascading style sheets. They are the new technology used to layout and style web pages. So what happened to old, trusty tables? For long tables were the only tool available to the web developers to... (Continue reading)
The absolute path for a file or directory is not the same as the URI. The absolute path on the web server is/home/DIR/Xs/something/mydir/. Here is how to find the absolute path on your web host for a given directory if... (Continue reading)
Close Event In Javascript Using OnUnload fuctions, its pretty simple.Check this out. <html> <body onunload=check()> <script type=”text/javascript”> function check() { a = “Mistonline.in” alert(a) } </script> </body> </html> Thanks VN:F [1.5.7_846]please wait...Rating: 3.0/10 (1 vote cast)VN:F [1.5.7_846]Rating: 0 (from 0 votes)... (Continue reading)