Skip to content

Instantly share code, notes, and snippets.

@pasadinhas
Created November 22, 2023 22:44
Show Gist options
  • Select an option

  • Save pasadinhas/d360950472987d4feeff754d223b1e7c to your computer and use it in GitHub Desktop.

Select an option

Save pasadinhas/d360950472987d4feeff754d223b1e7c to your computer and use it in GitHub Desktop.
Futbin - Sort SBCs by Approval
(() => {
const $wrapper = $(".row.col-12.d-flex");
const $sbcs = $wrapper.find(".mb-5")
const approval = $e => $e.find(".btn-sbc-vote-like").text().trim().replaceAll("(", '').replaceAll("%)", "");
[].sort.call($sbcs, (a, b) => approval($(b)) - approval($(a)));
$sbcs.each(function() { $wrapper.append(this) })
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment