Log in

View Full Version : Hiden form pieces shown when user accepts agreements...



Rockonmetal
05-09-2007, 08:49 PM
Hiden form pieces shown when user accepts agreements...
like i don't want the user to be able to upload their file until they say "I accept"...
Cuz I don't want people skipping parts of the form and having to refill the form later on...
I already tried the Form Dependancy Manager... but thats too complicated for me...

Twey
05-10-2007, 11:16 AM
It's not really complicated...
<label>
<input type="checkbox" name="agree">
I agree
</label>
<label>
Upload file:
<input type="file" class="DEPENDS ON agree">
</label>However, make sure you have a server-side check in place as well.