Posts by Felipe Tolentino • 11 points
5 posts
-
0
votes1
answer299
viewsA: Upload file with pure javascript, (Crawler) inputar file
Guys I managed to solve. Basically what I had to do was to perform an ajax request on the file I wanted to insert forcing the request to return a bluble object (which is the file in binary format).…
-
1
votes1
answer311
viewsA: How to get the text from the share box?
About copying text you can: Add an id to the html button: <button id= "copiarTexto" >COPIAR TEXTO PARA DIVULGAÇÃO PRÓPRIA</button> And create a function that during the click you take…
-
0
votes1
answer46
viewsA: Problem with Filter
You can use the change event to filter and fill in your combo: $('#listalogins').change(function(){ texto = $('#listalogins').val(); if(texto[0] === "@"){ alert (' PREENCHA SEU COMBO AQUI ') } });…
-
0
votes1
answer47
viewsA: Select does not update table data after selecting an option
We need more information. But I believe the problem lies in the event triggered at the time of the selection. What technology are you using to crawl? Usually when the interactions with other fields…
-
0
votes1
answer299
viewsQ: Upload file with pure javascript, (Crawler) inputar file
I am crawling a web page and there comes a time when I need to upload a file, this Crawler is to test a system. What I need to do is with the pure javascript inputar a document on the following…