How can i get a value of parent div except children tag – Woocommerce
<bdi> <span class="woocommerce-Price-amount amount">$</span> "75.47" </bdi> Now i want to access bdi value that is 74.47 only, how can i fetch it by using jquery. Here is my jquery Code. jQuery(document).ready(function($){ $('.qty').on('change',function(){ // grab the price var price = $('bdi').children().not('span').html();…