Hi,
I have a form that needs to be reviewed and scored by multiple users. I have created a collection for them to enter their scores and comments. Each user can complete their task in no particular order (not serialized) and they should not see each other's scores. I have put together the following Jquery which is functioning the way I want it to in the form, but information being passed forward in the process is only the last user's submission. I've also attached an image of the process to aid in understanding what i'm trying to do.
$('#q340 div.form-q').hide(); $("a.cf-collection-append.form-q").click(function(){ $('#q340 div.form-q').hide(); $('#q340 div.form-q').last().show(); $(this).hide();
Thanks.