Answers for "tets"

0

tets

$("#size-click").click(() => {
 let width = $("#prod-width").val();
 let height = $("#prod-height").val();
 var prodId = $(this).data("productId");

 console.log('this is prodId');
 console.log(prodId);

 const data = {
      prodId: prodId,
      step: 'Size',
      width: width,
      height: height,
    }

    postDataEstimate(data);

  })
Posted by: Guest on August-27-2021

Browse Popular Code Answers by Language