diff --git a/js/Weight Calculation Script-Edited-Jquery-V4.js b/js/Weight Calculation Script-Edited-Jquery-V4.js index d4fa08b..816a0af 100644 --- a/js/Weight Calculation Script-Edited-Jquery-V4.js +++ b/js/Weight Calculation Script-Edited-Jquery-V4.js @@ -120,6 +120,11 @@ }); + //hide reset button on weight input + jQuery('.input-weight').keyup(function() { + jQuery('.b-infoentry__reset').hide(); + }).keyup(); + //reset inputs and plate visuals jQuery(".b-infoentry__reset").click(function(){ jQuery(".input-weight, .input-weightsneeded").val(''); @@ -132,7 +137,6 @@ var savedScrollTop; function saveScroll() { savedScrollTop = jQuery(document).scrollTop(); - console.log(savedScrollTop); }