javascript text editor for psp.

blink13

Baseband Member
Messages
31
ok, ive never programed javascript but im tryin to make a text editor for the psp ive got some code for an input text box:

<html>
<head>

<script type="text/javascript">
function formReset()
{
var x=document.forms.myForm
x.reset()
}
</script>

</head>
<body>

<form name="myForm">
<input type="text" size="20,20"><br />


</body>
</html>

but i want to make the box a square. How would i do that.
after i have the box ill have a button that saves the contents as a string and cookie.
 
Back
Top Bottom