Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
$('.fields .services').each(function() { var field = $('select option:selected', this).text() + ';' + $('.sum-input', this).val(); var fields = array(); alert(field); });
var fields = []; $(".fields .services").each(function() { fields.push($("select option:selected", this).text() + ";" + $(".sum-input", this).val()); }); console.log(fields);
var fields = $(".fields .services").map(function() { return $("select option:selected", this).text() + ";" + $(".sum-input", this).val(); }); fields = $.makeArray(fields); console.log(fields);