Advertisement
Trambambaj

Szukanie lokacji fauna, flora

Mar 4th, 2021 (edited)
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Szukaj lokacji fauna, flora wszystkie opcje
  3. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
  4. // @version 1.1
  5. // @include *hegira.com.pl/*
  6. // @copyright free
  7. // ==/UserScript==
  8. if ($('input[type="radio"]').length === 5) {
  9. $("h3:contains(Szukaj lokalizacji wybranych form życia:)").after(
  10. '<button type = "button" id = "szukajwsz">Szukaj lokalizacji wszystkich opcji</button>'
  11. );
  12. }
  13. $("button#szukajwsz").click(function () {
  14. for (let i = 0; i < 2; i++) {
  15. for (let j = 2; j < 5; j++) {
  16. $.ajax({
  17. type: "POST",
  18. url: "blanc2.php",
  19. data: `menu=111&tech=local_life&s_id=${
  20. $('input[type="radio"]')[i].defaultValue
  21. }&forma_t=${$('input[type="radio"]')[j].defaultValue}&zaladuj=1`,
  22. async: false,
  23. });
  24. }
  25. }
  26. location.reload();
  27. });
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement