Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var me = $('.avatar').not('[alt=""]').first().attr('alt');
- function uniq(a) {
- return a.sort().filter(function(item, pos) {
- return !pos || item !== a[pos - 1];
- })
- }
- var peopleToCall = [];
- $(".voters-list").first().find('a').each(function(i, element) {
- var nick = $(element).html();
- if (nick === me) return true;
- peopleToCall.push("@" + nick);
- })
- $(".sub .author a.showProfileSummary b").each(function(i, element) {
- var nick = $(element).html();
- if (nick === me) return true;
- peopleToCall.push("@" + nick);
- });
- peopleToCall = uniq(peopleToCall);
- console.log("Wołam: " + peopleToCall.join(" "));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement