Skip to main content

Form Editing

Paste these code snippets into your browser's developer console (F12) to save yourself a lot of clicking.

Firefox console.png

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();

See also: โšก Slate Form JavaScript Quick Reference