I am using this probably ugly javascript to show a text box (in a li tag plus its label) if a checkbox is checked.
$(\"#li-2-21\").css(\"display\",\"none\");
Most concisely:
$(document).ready(function() { $("#Languages-spoken-and-understood-8").change(function() { $("#li-2-21")[$(this).is(":checked") ? 'show' : 'hide']("fast") }).change(); });
EDIT : switched from click to change event