Saturday, June 16, 2012

Survey


if (typeof jQuery == 'undefined'){ document.write(unescape("%3Cscript src='http://www.emailmeform.com/builder/js/jquery-1.7.1.min.js' type='text/javascript'%3E%3C/script%3E")); } if (typeof $.ui == 'undefined'){ document.write(unescape("%3Cscript src='http://www.emailmeform.com/builder/js/jquery-ui-1.7.2.custom.min.js' type='text/javascript'%3E%3C/script%3E")); }
User Experience Survey A
  • 1. Please select the category that best describes your profession: *
    --- Choose Profession --- Art Education Healthcare Media Sales / Marketing Student IT / Technology Other
  • 2. Was the information easy to find? *
    Yes
    No
  • 3. Was the information clearly presented? *
    Yes
    No
  • 4. Were you able to find what you were looking for? *
    Yes
    No
  • 5. What other information should we provided on our website? *
  • 6. How could we make the site easier to use? *
  • 7. Overall, how would you rate our site? *
    Great Good Average Fair Poor
    Accessibility 1 2 3 4 5
    Content 1 2 3 4 5
    Presentation 1 2 3 4 5
  • 8. Please enter your email address(optional)
  • Email
  • Phone
    ### - ### - ####
  • //
    // [googleapps domain="www" dir="recaptcha/api/noscript" query="k=6LchicQSAAAAAGksQmNaDZMw3aQITPqZEsX77lT9" width="500" height="300" /]

Powered byEMF Web Form
Report Abuse
//0 && form_obj.attr('action').indexOf('#')==-1 && window.location.hash){ form_obj.attr('action', form_obj.attr('action')+window.location.hash); } init_rules(); }); var EMF_price={ set_price_field: function (idx,fld_type){ //console.debug("idx:"+idx+" fld_type:"+fld_type); var field_options_map=EMF_price.field_options_map; var price=0.00; if(fld_type==EMF_price.FORM_FIELD_TYPE_DROPDOWN){ if(field_options_map && field_options_map['fld_'+idx]){ var optIdx=document.getElementById("element_"+idx).selectedIndex; //console.debug("idx:"+idx+" optIdx:"+optIdx); if(optIdx>=0){ price=field_options_map['fld_'+idx]['opt_'+optIdx]; } } }else if(fld_type==EMF_price.FORM_FIELD_TYPE_MULTIPLE_CHOICE){ if(field_options_map && field_options_map['fld_'+idx]){ var options=field_options_map['fld_'+idx]; if(options){ EMF_jQuery.each(options, function(opt_key,opt_price){ var opt_idx=opt_key.split("_")[1]; //console.debug("check: #element_"+idx+"_"+opt_idx); if(EMF_jQuery("#element_"+idx+"_"+opt_idx).is(":checked")){ price=opt_price; } }); } } }else if (fld_type==EMF_price.FORM_FIELD_TYPE_PRICE){ //price=EMF_jQuery("#element_"+idx).val(); var price1=EMF_jQuery("#element_"+idx+"_1").val(); var price2=EMF_jQuery("#element_"+idx+"_2").val(); price=price1; if(price=="" || isNaN(parseInt(price,10))){ price="0"; } if(price2=="" || isNaN(parseInt(price2,10))){ price+=".00"; }else{ price+="."+price2; } } var floatPrice=parseFloat(price); EMF_price.price_fld_info['price_list']['idx_'+idx]['price']=floatPrice; }, format_price:function (currency,price){ return currency+new Number(price).toFixed(2); }, calc_price_fields:function (){ //calc by price_fld_info //var price_fld_info={"currency":"$","fixed_price":0,"price_list":{"idx_7":{"idx":7,"fld_type":"5","price":"1.0"},"idx_1":{"idx":1,"fld_type":"19","price":"2"}}}; var currency=EMF_price.price_fld_info['currency']; var fixed_price=EMF_price.price_fld_info['fixed_price']; var price_list=EMF_price.price_fld_info['price_list']; if(price_list){ var totalPrice=fixed_price; EMF_jQuery.each(price_list,function(idx,val){ var fld_type=val["fld_type"]; EMF_price.set_price_field(val['idx'],fld_type); var floatPrice=val['price']; totalPrice+=floatPrice; EMF_jQuery("#price_field_"+val['idx']).html(EMF_price.format_price(currency,floatPrice)); }); //totalPrice+=fixed_price; EMF_jQuery("#total_price").html(EMF_price.format_price(currency,totalPrice)); } } }; EMF_jQuery(window).load(function(){ post_message_for_frame_height(); }); var emf_widgets={text : function(index){ return $("#element_"+index).val(); } ,number : function(index){ return $("#element_"+index).val(); } ,textarea : function(index){ return $("#element_"+index).val(); } ,checkbox : function(index){ var arr=new Array(); $("input[name='element_"+index+"[]']:checked").each(function(){ arr[arr.length]=this.value; }); var result=arr.join(", "); return result; } ,radio : function(index){ var result=""; $("input[name=element_"+index+"]:checked").each(function(){ result=this.value; }); return result; } ,select : function(index){ return $("#element_"+index).val(); } ,email : function(index){ return $("#element_"+index).val(); } ,phone : function(index){ var arr=new Array(); $("input[id^=element_"+index+"_]").each(function(){ arr[arr.length]=this.value; }); var result=""; if(arr.length>0){ result=arr.join("-"); }else{ result=$("#element_"+index).val(); } return result; } ,datetime : function(index){ var result=""; var date_part=""; if($("#element_"+index+"_year").length==1){ date_part=$("#element_"+index+"_year-mm").val()+"/"+$("#element_"+index+"_year-dd").val()+"/"+$("#element_"+index+"_year").val(); } var time_part=""; if($("#element_"+index+"_hour").length==1){ time_part=$("#element_"+index+"_hour").val()+":"+$("#element_"+index+"_minute").val()+" "+$("#element_"+index+"_ampm").val(); } if(date_part && time_part){ result=date_part+" "+time_part; }else{ result=date_part ? date_part : time_part; } return result; } ,url : function(index){ return $("#element_"+index).val(); } ,file : function(index){ return $("#element_"+index).val(); } ,select_multiple : function(index){ return $("#element_"+index).val(); } ,price : function(index){ var result=""; var arr=new Array(); $("input[id^=element_"+index+"_]").each(function(){ arr[arr.length]=this.value; }); result=arr.join("."); return result; } ,hidden : function(index){ return $("#element_"+index).val(); } ,section_break : function(index){ return ""; } ,page_break : function(index){ return ""; } ,deprecated : function(index){ return $("#element_"+index).val(); } ,address : function(index){ var result=""; var element_arr=$("input,select").filter("[name='element_"+index+"[]']").toArray(); result=element_arr[0].value+" "+element_arr[1].value+"\n" +element_arr[2].value+","+element_arr[3].value+" "+element_arr[4].value+"\n" +element_arr[5].value; return result; } ,name : function(index){ var arr=new Array(); $("input[id^=element_"+index+"_]").each(function(){ arr[arr.length]=this.value; }); var result=arr.join(" "); return result; } }; var emf_condition_id_to_js_map={5 : function(field_value, value){ return field_value==value; } ,6 : function(field_value, value){ return field_value!=value; } ,1 : function(field_value, value){ return field_value.indexOf(value)>-1; } ,2 : function(field_value, value){ return field_value.indexOf(value)==-1; } ,3 : function(field_value, value){ return field_value.indexOf(value)==0; } ,4 : function(field_value, value){ return field_value.indexOf(value)==field_value.length-value.length; } ,7 : function(field_value, value){ return field_value==value; } ,8 : function(field_value, value){ return parseFloat(field_value)>parseFloat(value); } ,9 : function(field_value, value){ return parseFloat(field_value) < parseFloat(value); } ,10 : function(field_value, value){ var date_for_field_value=Date.parse(field_value); var date_for_value=Date.parse(value); if(date_for_field_value && date_for_value){ return date_for_field_value == date_for_value; } return false; } ,11 : function(field_value, value){ var date_for_field_value=Date.parse(field_value); var date_for_value=Date.parse(value); if(date_for_field_value && date_for_value){ return date_for_field_value date_for_value; } return false; } }; var emf_group_to_field_rules_map=[]; var emf_group_to_page_rules_for_confirmation_map=[]; //]]>

No comments:

Post a Comment