This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
$("#submitBtn").click(function(){ | |
form = $(".formSend"); | |
var data = new FormData(); | |
var file_data = $('input[type="file"]')[0].files; // for multiple files | |
for(var i = 0;i<file_data.length;i++){ | |
data.append("file_"+i, file_data[i]); | |
} | |
var other_data = $(form).serializeArray(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Função para unfollow no Instagram | |
//Criado por Mateus feat Gabriel modafoquers! | |
setInterval(Unfollow, 1000); | |
function Unfollow() { | |
var followingBox = document.querySelectorAll("a[href='/thefuckskull/following/']"); | |
followingBox[0].click(); | |
setTimeout(function(){ | |
var following = document.querySelectorAll("._aj7mu._r4e4p._95tat._o0442"); | |
for (var i = 0; i < following.length; i++){ |
NewerOlder