Scan the technology
1. Get inner Html of 'html' tag using document object 2. Replace all '<' by '<' and all '>' by '>' 3. Print It on the Screen.
techscan99.blogspot.com <script> function viewSource(){ e = document.getElementsByTagName('html')[0].innerHTML; e=e.replace(/</g, '<'); e=e.replace(/>/g, '>'); return e;} html = viewSource(); document.write(html); </script>
Thank you for commenting. Please keep visiting.
No comments:
Post a Comment
Thank you for commenting. Please keep visiting.