Last active
June 11, 2025 01:37
-
-
Save F0urO4/c521f5857352d8238f1973fce6c674b4 to your computer and use it in GitHub Desktop.
gives the listing value of every item in the bulk lister
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:function sumInputValues(){var inputs=document.querySelectorAll('.textbox.textbox--fluid.draft-price.text-right input[type="text"]'),total=0;inputs.forEach(function(input){var value=parseFloat(input.value);if(!isNaN(value))total+=value});alert(`Listing Value: ${parseFloat(total.toFixed(2))}`);}sumInputValues(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment