Quote:
Originally Posted by imvain2
Create a text field and name it, then wrap that field in a div with display:none.
Then in the server side form processing code, look to see if the form field myemail is empty, if its not empty then don't allow the form to be submitted.
Code:
<div style="display:none;">
<input type="text" name="myemail" value="">
</div>
|
OH WOW! Wicked solution! Any chance you or BJ can post the scripting that looks at the field and kills the submit?
I have a couple older sites that would benefit from this...