Posts by Luiz Filipe Da Silva • 57 points
6 posts
-
0
votes0
answers16
viewsQ: Failed to update tags in Beanstalker
We have some beanstalks configured and we are trying to update the tags of a specific to apply automatic machine shutdown (EC2) at certain times. It shows failure when adding a new tag, as the image…
awsasked Luiz Filipe Da Silva 57 -
1
votes1
answer79
viewsA: How to open link in a specific part of a new tab
To open the page in a new tab, add the property target=_blank. If you want it to open in a specific part, put the id corresponding to this element in the link, like this: <a…
-
-2
votes1
answer142
viewsQ: How to block access to a particular file on the server?
Basically, I have a file JSON in my project that contains information I wish not to access by typing in the address bar something like: www.meusite.com/file.json And that goes for other files. How…
-
-1
votes2
answers730
viewsA: Scroll bar after using 100vh
To prevent page content from continuing to be displayed after the height of the element in question reaches its maximum value, that is, 100%, prevent the scroll bar from being shown using the…
-
2
votes1
answer29
viewsA: The function is not returning the variable in html
There are at least two syntax errors in the following lines: var w1 = 42,305 / Math.sqrt(d1) ; var w2 = 76,63 / Math.sqrt(d2) ;; First: no comma is used , to identify numbers of the type float in…
javascriptanswered Luiz Filipe Da Silva 57 -
0
votes1
answer46
viewsA: How to let the loop separate on Row
Here’s a perfect example for your case. It’s in the documentation of jQuery. JavaScript: $.getJSON( "ajax/test.json", function( data ) { var items = []; $.each( data, function( key, val ) {…