I have a survey of which I want to record a user starting to complete it, by capturing the very first change in any input field or textarea.
So, if all fields (except hidden fields) are blank and any input / textarea change() is detected, I want to run the function rec_start.
if( allBlank ) { rec_start(); }
How can I detect allBlank? I asked this question here but added the hidden fields exception too late ... I'll accept answers in both question once I have a working solution.
Thanks