
We need your help. Please tell us about you and
your preferences (Questionnaire). Just “click: the answer that best describes your household.
Thanks for your Time.
DoubleUp Team
your preferences (Questionnaire). Just “click: the answer that best describes your household.
Thanks for your Time.
DoubleUp Team


Are you married? Do you live with a partner?

How many babies do you have?

How much time do you spend away from the home with your baby.

Do you have a boy, girl or blended?

Do you pump your milk and bring it with you?

Which type of liquid do you like to use?

Questionnaire: Do you use purified water or tap water?

Do you carry formula? If yes; what type of formula do you use?

Which brands do you use for your formula?

Do you use glass or plastic?
$("#surveyformbtn").click(function(){ var form = $("#surveyform"); var url = form.attr('action'); $("#surveyformbtn").attr('disabled','disabled'); $("#surveyformbtn").val('Loading...'); $('.raserror').html(''); $.ajax({ type: "POST", url: url, data: form.serialize(), // serializes the form's elements. success: function(data) { var obj = JSON.parse(data); if(obj.error) { $("#surveyformbtn").removeAttr('disabled'); $("#surveyformbtn").val('Next'); $([document.documentElement, document.body]).animate({ scrollTop: $("#"+obj.move).offset().top-200 }, 2000); $.each(obj.errors, function (key, val) { $('#'+key).html(val); }); } else { window.location.href='https://doubleup.baby/questionnaire2/'; } } }); });
