| | |||||
| ||||||||
| CODE This forum is for posting code snippets and example scripts that aren't quite tutorials, but could be useful for others. You may post code snippets and/or completed scripts that you've written and want to share here. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| Senior Member Join Date: Aug 2002
Posts: 1,255
![]() ![]() | JavaScript: Allow your visitors to View the Source Code of Web Pages from your site This code allows your visitors to type any url in a text box and will attempt to retrieve the source code. View example: http://www.webdesigntalk.net/tools/viewsource.html Add this to the head section of your page: Code: <script language="JavaScript" type="text/javascript">
<!-- Code by deadserious - http://www.webdesigntalk.net -->
function http(){
if (document.getsource.view.defaultvalue != document.getsource.view.value)
{document.getsource.view.value = "View Source"}
if (document.getsource.url.defaultvalue != document.getsource.url.value)
{document.getsource.url.value = "http://"}
}
function viewSource(){
document.getsource.view.value="One Moment Please";
var geturl = document.getsource.url.value; {
var SourceUrl = "view-source:" + geturl ; location.href = SourceUrl;
}
}
</script> ????: NamePros.com http://www.namepros.com/code/15219-javascript-allow-your-visitors-view-source.html Code: <form name="getsource" action="">
<b>URL:</b> <input type="text" name="url" onfocus="http()"
value="http://" /> <input type="button" name="view"
value="View Source" onclick="viewSource()" />
</form> |
| |
| | #4 (permalink) |
| NamePros Member Join Date: Aug 2003 Location: Ontario, Canada
Posts: 98
![]() | I used it on my new website. Except I modified it to: <A HREF="javascript:window.location.replace('view-source:' + window.location + '');">view my source</A> Very usefull.
__________________ Yeah... I knew that. What? |
| |
| | #5 (permalink) | ||||
| Senior Member Join Date: Aug 2003 Location: Canada
Posts: 1,257
![]() ![]() ![]() ![]() |
__________________ Near Fantastica | Matthew Good - Vancouver TS Design Group - Vancouver, BC based Graphic Design >> Do you Frawlik? << | ||||
| |
| | #6 (permalink) |
| NamePros Regular Join Date: Sep 2003
Posts: 889
![]() ![]() | I could def. use that. I didn't know that was possible! Thanks!
__________________ Online Time Tracking :) |
| |