// ==UserScript== // @name HP OUTLET PRICE SORTER // @namespace http://tampermonkey.net/ // @version 0.1 // @description Click "Outlet price" (not "Outlet sale price") to sort HP Business Outlet prices // @author xThomas/xTh // @match https://h41369.www4.hp.com/pps-offers.php // @grant none // @downloadURL https://update.greasyfork.icu/scripts/388503/HP%20OUTLET%20PRICE%20SORTER.user.js // @updateURL https://update.greasyfork.icu/scripts/388503/HP%20OUTLET%20PRICE%20SORTER.meta.js // ==/UserScript== function loaded(){ alert("CLICK OUTLET PRICE TO SORT FROM LEAST TO GREATEST"); var elements = [...document.querySelectorAll(".pps-header td:nth-child(3)")]; for (let i = 0; i < elements.length; i++) { elements[i].addEventListener('click', function(){ var n = 0; // number of times we ran appendChild let t = elements[i].parentElement.parentElement; //"TBODY" for (let i=1;i