Jump to content

Registraion Question


ChidoriSoul

Recommended Posts

I am having a bit if trouble with a registration page. I put a plugin to show where they found the site, or who told them to joinActually, how do i make a read only text area, so the information is still sent to the serverThe bold area is where the registraion goes wrong, they can register, but the Found information is not sent to me

Link to comment
Share on other sites

I don't see a bold area, but if you want a text-box that sends information set by a value, you can use the submit() function.

<html><head><script type="text/javascript">function submitInfo() {document.form.feild.submit();}</script></head><body onload="submitInfo()"><form name="form"><input name="feild" type="text" value="yes" /></form></body></html>

That would essentially create a "read-only" text box, because it submits itself right away.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...