$(document).ready(function(){ $.ajaxSetup({ async:false }) $('.btn-cart').on('click',function(e){ e.preventDefault(); var f = this.form; var fs = ["e","d","c","b","a"]; var category = $(this).data("category"); var len = $('input[type=checkbox]:checked',f).length; $('input[type=checkbox]:checked',f).each(function(){ var data={}; data.category=category; $(this).parent().prevAll().each(function(i,s){ data[fs[i]]=$(s).text(); }); $.post('do.php?action=inquiryAdd&v=51',data,function(r){ if(r!=""){ alert(r); } }); }); window.location.href='inquiry.html'; }); });