RE: Text box not appearing in IE
this line: <input name="name" type="hidden" id="name" value=" Reaper"
You missed the > at the end and I don't think you want type="hidden"
So replace that line with:
<input name="name" id="name" value=" Reaper">
|