17 lines
573 B
Smarty
17 lines
573 B
Smarty
<script>
|
|
function getPrice() {
|
|
let price = '{$this_cena}';
|
|
let priceObj = document.querySelectorAll('.product-prices .current-price');
|
|
if (priceObj.length > 0) {
|
|
price = priceObj[priceObj.length - 1].textContent;
|
|
}
|
|
return parseFloat(price.replace(',', '.').replace(/[^\d.]/g, ""));
|
|
}
|
|
</script>
|
|
<br/>
|
|
<div id="oblicz-rate">
|
|
<a onclick="window.open('{$this_kalkulator}' + getPrice())" target="_blank">
|
|
<img src="{$this_path_raty}/alior-kalkulator-guzik.gif"/>
|
|
</a>
|
|
</div>
|
|
<br/> |