Skip to content

Instantly share code, notes, and snippets.

@agragregra
Last active May 13, 2023 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agragregra/e38de84c21fa45874ff2df39ed11e3d8 to your computer and use it in GitHub Desktop.
Save agragregra/e38de84c21fa45874ff2df39ed11e3d8 to your computer and use it in GitHub Desktop.
Получить сумму всех выкупленных заказов DNS на вкладке "Выкупленные"
// Сначала необходимо долистать до конца страницы: Fn + ↓
total = 0;
$('.order-summary__sum').each(function() {
item = parseInt($(this).text().replace('₽', '').replace(' ', ''));
total += item;
});
console.log(total);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment