I had a contact form which works fine with Firefox but in Internet Explorer, when I click the submit button it is not working i.e. I'm not able send the form.
Any help is appreciated.
Thank you
Any help is appreciated.
Thank you
Hi Josh,
This should be caused by some issue at your form code, could you please post your form HTML and JS code here and we will have a look!!
Cheers
Max
This should be caused by some issue at your form code, could you please post your form HTML and JS code here and we will have a look!!
Cheers
Max
check this link in both the browsers:
http://www.jdip.org/index.php?option=com_chronocontact&chronoformname=Join_JDIP
In IE there is some extra code placed on the form.
Code is:
Post edited by: joshkovel, at: 2007/08/10 01:02
Later: edited to add code tags.<br><br>Post edited by: GreyHead, at: 2007/08/10 09:58
http://www.jdip.org/index.php?option=com_chronocontact&chronoformname=Join_JDIP
In IE there is some extra code placed on the form.
Code is:
Enter name (First Name + Last Name):<br />
<input name="Name" type="text" class="style1" style="width: 252px" /><br />
Enter the Institution/Company:<br />
<input name="Company" type="text" class="style1" style="width: 252px" /><br />
*Enter Occupation:<br />
<select name="Occupation" style="width: 203px">
<option selected="selected">Select the option</option>
<option>Scientist</option>
<option>Industry</option>
<option>Farmer/Rancher</option>
<option>Veterinarian</option>
<option>Educator</option>
<option>Other</option>
</select>
If Other:<input name="Other" type="text" style="width: 258px" /><br />
*Enter Area of Interest:<br />
<select name="Area" style="width: 202px">
<option selected="selected">Select the option</option>
<option>Epidemiology and Transmission</option>
<option>Diagnostics and Strain Differentiation</option>
<option>Map Biology and Pathogenesis</option>
<option>Map Immunology and Vaccine Development</option>
<option>Genomics, Antibodies, and Proteomics</option>
<option>Animal Models and Facilities</option>
<option>Extension and Outreach</option>
</select><br />
*Enter email:
<br />
<input name="Email" type="text" style="width: 258px" /><br />
*Enter your preferred USER ID:<br />
<input name="userid" type="text" style="width: 258px" /><br />
*Enter Message:<br />
<textarea name="Message" style="width: 260px; height: 149px"></textarea><br />
*Upload Resume:<br />
<input name="Resume" type="file" /><br />
<br />
<input type="submit" value="submit" /><br />
Post edited by: joshkovel, at: 2007/08/10 01:02
Later: edited to add code tags.<br><br>Post edited by: GreyHead, at: 2007/08/10 09:58
Hi Josh,
I see you had some mistake :
you added :
but it should be :
this should fix it๐
Cheers
Max
I see you had some mistake :
you added :
enctype='multipart/form-data
but it should be :
enctype="multipart/form-data"
this should fix it๐
Cheers
Max
This topic is locked and no more replies can be posted.