Tuesday, December 1, 2009

Supreme Court files petition in Supreme Court

In strange case, the country's top court has filed a petition in the Supreme Court itself challenging Central Information Commission's (CIC) orders and wants a stay.

World Aids Day

The day is held on 1 December to raise awareness about HIV and AIDS around the world.

Wednesday, November 25, 2009

DHTML Wonders

We can do a lot of things using DHTML
follow the below url for wonderful code and demos

http://www.dhtmlgoodies.com/

Tuesday, November 24, 2009

IFrames and cross-domain communication

Wow..We can communicate with different domains which are in same page using javascript


Click on the following URL for solution
http://pipwerks.com/2008/11/30/iframes-and-cross-domain-security-part-2/

Monday, November 23, 2009

JavaScript list of Files in Folder

var folderspec="C:\\msa"
var fso, f, f1, fc, s;
fso = new ActiveXObject("Scripting.FileSystemObject");
f = fso.GetFolder(folderspec);
fc = new Enumerator(f.files);
s = "";
for (; !fc.atEnd(); fc.moveNext())
{
s += fc.item();
s += "
";

}
document.write(s);