skip to Main Content

Html – unwanted long margin at the bottom

<body> <div class="nav" id="Nav"> <a href="#top">Home</a> <a href="#nav1">Shop</a> <a href="#nav2">Blog</a> <a href="#nav3">About</a> <a href="#nav4">Contact</a> </div> <div id="page"> <img src="xyz" height="300" width="300" style="display: block; margin: 0 auto;"> </div> <div id="nav1"></div> </body> <style> .nav { text-align: center; background-color: #edb021; position: absolute; width:…

VIEW QUESTION

Woocommerce – jQuery – Wrong price calculation

I have this code in elementor custom code, it's loaded at the end of the body tag. <script> jQuery(document).ready(function($){ var productPrice; var finalProductPrice; var shippingPrice; var servicePrice; var result; var output; // $('#ship-price-a').on('click', function(){ if( typeof productPrice === 'undefined' ){…

VIEW QUESTION

Woocommerce – jQuery – Unable to select value of an element added using elementor

I have this code in elementor custom code <script> jQuery(document).ready(function($){ $('#ship-price').on('click', function(){ var originalPrice = $('#product-price').val(); console.log(originalPrice); // var shipPrice = $('#ship-price').val(); console.log(shipPrice); }); }); </script> I'm trying to select two elements that I've added using elementor and where I…

VIEW QUESTION
Back To Top
Search