Начало
Детали страницы
Source Viewer
Посмотреть источник любой веб-странице.
Type in a full URL and click "View Source"
JavaScript Page Details: Source Viewer
<!-- TWO STEPS TO INSTALL SOURCE VIEWER: 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin function viewSource() { document.getSource.view.value="Please wait!"; setTimeout("document.getSource.view.value='View Source!'",6000); window.location.href= "view-source:" + document.getSource.url.value; return false; } // End --> </script> </HEAD> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <BODY> <center> Type in a full URL and click "View Source" <br> <br> <form name=getSource onSubmit="return viewSource();"> <input type=text name=url value="http://"> <br> <br> <input type=submit name=view value="View Source"> </form> </center> <!-- Script Size: 1.08 KB -->