Posts by Lucas Picasso • 78 points
5 posts
-
1
votes1
answer360
viewsA: Read Filereader generated string in result function
Apparently you are not searching the string the right way. I already had to do exactly the same job a while ago, however, I did in jquery: var fileReader = new FileReader(); var anexo =…
-
0
votes3
answers110
viewsA: Visited in tr table
Unfortunately there is no way to do this only with css, because the TR tag is not a naturally selectable element. However, you can use Javascript to add a specific class on the last selected TR, and…
-
2
votes1
answer404
viewsA: Uncaught Typeerror: $(...). Attr is not a Function
Function calls are case sensitive, in your example, you are using ". Attr()", with uppercase letter: $("#chatEnvia").Attr('data-toggle', 'modal'); Try using with lower case letter:…
-
2
votes1
answer92
viewsA: Change background according to Javascript temperature
For the change, just establish a validation within the "getWeather()" function, creating a relationship between the standard message returned by the api, and the specific image url of that climate…
-
1
votes1
answer848
viewsQ: Processing status in Ajax calls (jquery)
I have an application that communicates with the server using ajax calls with jquery. However, in some cases, the time for the return of the call ends up being too long. I would like to know if…