Simple fix in EForm

windows

Guest
Ok, Ive got this but not sure what command to use to make the Content box bigger...something like Im typing into right now with the scroll bar....Im overlooking something easy...<br />
<br />
<html><br />
<head><br />
<br />
<script language="JavaScript1.2"><br />
<!--<br />
function dothis(_f)<br />
{<br />
var _e=_f.ename.value;<br />
var _s=_f.subj.value?"?subject="+_f.subj.value:"";<br />
var _b=_f.bod.value?"body="+_f.bod.value:"";<br />
if(_s&&_b) _b="&"+_b; else if(_b)_b="?"+_b;<br />
if(_e)<br />
document.location="mailto:"+_e+_s+_b;<br />
return _e?true:false;<br />
}<br />
//--><br />
</script><br />
<br />
<br />
</head><br />
<body><br />
<body text="blue">Email a Posting to a Friend or Yourself<br />
<form><br />
Email to: <input type="text" name="ename" size="20"><BR><br />
Subject: <input type="text" name="subj" size="20"><BR><br />
Content: <input type="text" name="bod" size= "20"<BR><BR><br />
<br />
<input type="button" value="Send it" onclick="dothis(this.form)"><br />
<input type="reset" value="Clear text"><br />
</form><br />
<br />
<br />
</body><br />
</html><!--content-->hehe yeah something simple. the content box needs to be a textarea.<br />
<br />
<textarea cols=20 rows=5 name=content></textarea><!--content-->Yep thats what I wanted :)<!--content-->
 
Back
Top