Form Editing
Paste these code snippets into your browser's developer console to save yourself a lot of clicking.
Unhide/Show All Form Fields (useful for debugging)
$("div[id^='form_question_']").show();
Check All Prompts (useful when editing Conditional Logic)
$('#prompt_table input').click();
No Comments