Hola EDpro
ve si esto te sirve
Código:
<html>
<head>
<title>Codigo Fuente</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
function verCodigoFuente (frm) {
if (frm.url.value == "") {
alert("Introduzca alguna URL");
return false;
}
/* Expresion regular que representa el protocolo http en el inicio de la URL */
var protocolo = /^http:\/\//
if (frm.url.value.search(protocolo)<0) {
alert("La URL tiene que empezar pto http://");
return false;
}
window.location.href="view-source:" + frm.url.value;
return true;
}
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<form>
URL: <input type="text" name="url" size="50" value="http://"><br>
<input type="button" onClick="verCodigoFuente(this.form);" value="Ver código fuente">
</form>
</body>
</html>
Saludos
Cualquier cosa vuelve a preguntar