SIMPLE HTML EDITOR:
USING HTML AND JAVASCRIPT-
<html>
<script type="text/javascript">
function ShowResult()
{
my_window = window.open("about:blank","mywindow");
my_window.document.write(x);
}
</script>
<body>
<textarea style = "height:500px; width:700px; overflow:auto;" onBlur="x=this.value">
</textarea><br/>
<button onClick="ShowResult()">See Result!</button>
</body>
</html>
No comments:
Post a Comment