Techno World Inc - The Best Technical Encyclopedia Online!

THE TECHNO CLUB [ TECHNOWORLDINC.COM ] => Javascript Tricks => Topic started by: Tina on September 20, 2007, 01:16:18 PM



Title: Orkut Details
Post by: Tina on September 20, 2007, 01:16:18 PM
Orkut Details

Detail code,which will show all the following details:


Via:
Connection:
Proxy-connection:
Expires:
Date:
Content-type:
Cache-Control:
Prgma:
Content-Encoding:
Server:



Code:
javascript:a=new XMLHttpRequest();a.open("GET",location,true);a.onreadystatechange=function(){if(a.readyState==4){alert(a.getAllResponseHeaders())}};a.send(null)