Includere variabila php in Jquery.
Scris: Lun Noi 28, 2016
Buna Marplo,
Cum pot include o variabila php in jquery ? , tot scriptul Jquery este in fisierul (.js) Se poate?
Am incercat:
file.js
Mersi
Cum pot include o variabila php in jquery ? , tot scriptul Jquery este in fisierul (.js) Se poate?
Am incercat:
file.js
Cod: SelectaĊ£i tot
//////////////////
function updatePret() {
$pret = 0;
$('.tabel_s').each(function() {
if ($('.celul_a td.active',this).length + $('.celul_b td.active',this).length == 2 + 2)
$pret += <?php $pretul_real; ?>
})
$('.pret').html(Math.round($pret * 100) / 100);
return $pret;
}
///////////