но основная же суть моего вопроса как раз-таки в js... php используется как средство выкачки информации из БД. я более чем уверен, что опытный js-разработчик владеет php
<script>
function changeText0(){
var supertotal = 0;
var total = 0;
var prices = [];
var vals = [];
var totals = [];
var stotalsid= [];
var stotals= 0;
$('.stot').each(function(){
stotalsid.push (Number($(this).attr("id")));
});
for (var i=0; i<stotalsid.length; i++)
{
$('#trmain'+ i +' .tdprice').each(function(){
prices.push (Number($(this).attr("price")));
});
$('#trmain'+ i +' input').each(function(){
vals.push (Number($(this).val()));
});
for (var ii=0; ii<vals.length; ii++)
{
totals[ii] = vals[ii]*prices[ii];
$('#tot' +i +'-'+ ii).html( totals[ii] + ' руб.' );
stotals += totals[ii];
}
supertotal += stotals;
$('#stot'+ i).html( stotals + ' руб.' );
stotals= 0;
prices = [];
vals = [];
totals=[];
}
$('#supertotal').html( supertotal + ' руб.' );
};
</script>