Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form not working in IE - Fine in FF

Status
Not open for further replies.

ValleyWeb

Technical User
Feb 17, 2008
7
US
Hi everyone,

Ran into a little problem with a form.

I can click on the form elements and enter info in FF, but when I click on the form elements in IE I don't get a cursor to enter the info......

This has me scratching my head, any info greatly appreciated.

Jim

Code:
<div class="indent">
  <img src="images/form.gif" class="title" alt="" /><br />
       <form id="form" action = "cgi-bin/cgiemail/template.txt" enctype = "multipart/form-data">
        <div class="ln">Name<br /><input type="text" name="name" /></div>
        <div class="ln"><br />E-mail<br /><input type="text" name="email" /></div>
        <div class="ln"><p>&nbsp; </p><p>&nbsp; </p>Message<br /><input type="text" name="message" size="40" maxlength="500" /></div>
        <div class="tar"><p>&nbsp; </p><p>&nbsp; </p><p>&nbsp; </p><a href="#" onclick="getElementById('form').reset()"><img src="images/clear.jpg" alt="" /></a><img src="images/spacer.gif" width="5" height="1" alt="" /><a href="#" onclick="getElementById('form').submit()"><img src="images/send.jpg" alt="" /></a></div>
         </form>
      </div>
 
taking a shot in the dark, but maybe IE needs the name="" attribute in the <form> tag. Try putting that in, and see what happens...

_____________________________
Just Imagine.
 
You probably have elements covering the form input boxes. Due to some differences in rendering the same elements might not be covering input boxes in FF.

___________________________________________________________
[small]Do something about world cancer today: Comprehensive cancer control information at PACT[/small]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top