Skip to content

Instantly share code, notes, and snippets.

@F0urO4
Last active June 11, 2025 01:37
Show Gist options
  • Save F0urO4/c521f5857352d8238f1973fce6c674b4 to your computer and use it in GitHub Desktop.
Save F0urO4/c521f5857352d8238f1973fce6c674b4 to your computer and use it in GitHub Desktop.
gives the listing value of every item in the bulk lister
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