Skip to content

Instantly share code, notes, and snippets.

@ptyskju
Created June 26, 2020 10:55
Show Gist options
  • Save ptyskju/ec90d1f1381ee7dfcf21b0e92a475040 to your computer and use it in GitHub Desktop.
Save ptyskju/ec90d1f1381ee7dfcf21b0e92a475040 to your computer and use it in GitHub Desktop.
Kod js do przedłużania i odświeżania wielu ogłoszeń na raz w OLX
$('.extendLink').each(function () {
if($(this).hasClass("refreshme")){
$(this).click();
} else if ($(this).hasClass("extendme")) {
var href = $(this).attr('href');
$.get(href);
$(this).remove();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment