Hi all!
I would like to expand (and collapse) text under one of the form labels.
I have "Terms and Conditions" label in form with the check box "I accept".
What I need is - when click on "Terms and Conditions" label, the text of these terms expands under the label.
Or probably this text could appear as popup window - like here in chronoengine site when FAQ section questions get clicked.
I guess some java script would do it?
Some code example would be great.
Here I paste also my form HTML code if it helps,
Thanks,
Raivis
I would like to expand (and collapse) text under one of the form labels.
I have "Terms and Conditions" label in form with the check box "I accept".
What I need is - when click on "Terms and Conditions" label, the text of these terms expands under the label.
Or probably this text could appear as popup window - like here in chronoengine site when FAQ section questions get clicked.
I guess some java script would do it?
Some code example would be great.
Here I paste also my form HTML code if it helps,
<div class="form_item">
<div class="form_element cf_checkbox">
<label class="cf_label" style="width: 150px;">Terms and Conditions</label>
<div class="float_left">
<input value="I accept" title="Please accept Terms and Conditions before continue" class="radio validate-one-required" id="check00" name="t_and_c" type="checkbox" />
<label for="check00" class="check_label">I accept</label>
<br />
</div>
</div>
<div class="cfclear"> </div></div>
<div class="form_item">
<div class="form_element cf_button">
<input value="Donate" name="button_5" type="submit" />
</div>
<div class="cfclear"> </div>
</div>
Thanks,
Raivis