Reference Guide

facebook FBML Reference Guide Page 145 of 159
DynamicFBML/Forms
Attributes
clicktoenable - Will enable the form elements specified by id.
clicktodisable - Will disable the form elements specified by id.
clickthrough - Will allow clicks on elements using Dynamic FBML to go through to the element.
Examples
<form>
<input type="text" id="firstname" name="firstname" />
<input id="sendbutton" type="submit" value="Submit"
clicktodisable="firstname" clicktohide="sendbutton" clickthrough="true" />
</form>
Notes
Combining clickthrough and clicktodisable does not allow a form to submit in Safari 3, bug has been
submitted to Safari
Disabled form elements do not submit values.
Multiple ids should be separated by commas.
www.yapish.com