|
Aqui te dejo el código del probador de códigos:
<div style="text-align: center;"><script>
function probar(texto) {
ventana = window.open('', 'popup', '');
ventana.document.write(texto);
}
</script>
<form name="probador" action="">
<strong><br />
</strong><textarea rows="10" cols="65" name="texto"></textarea><br />
<input type="button" value="¡Probar!" onclick="probar(texto.value)" />
</form>
</div>
|
|