jQuery(document).ready(function($){
function updateMobilePrice(){
var finalPrice=$('.price.amount.final').first().html();
if(finalPrice&&finalPrice.length > 0){
$('#mobile-final-price').html(finalPrice);
}else{
var normalPrice=$('.summary .price .woocommerce-Price-amount').first().html();
if(normalPrice&&normalPrice.length > 0){
$('#mobile-final-price').html(normalPrice);
}}
}
updateMobilePrice();
$(document).on('tm-epo-update', function(){
setTimeout(updateMobilePrice, 100);
});
$(document).on('wc-epo-check-dpd', updateMobilePrice);
$(document).on('tm-epo-check-dpd', updateMobilePrice);
$('.quantity input').on('change', function(){
setTimeout(updateMobilePrice, 100);
});
setInterval(updateMobilePrice, 500);
});