Codice PHP:
$(document).ready(
function(){
totale = 0;
$(".wrapper img").each(
function(){
totale += $(this).width();
}
)
alert(totale);
}
)
Codice PHP:
$(document).ready(
function(){
totale = 0;
$(".wrapper img").each(
function(){
totale += $(this).width();
}
)
alert(totale);
}
)