Posts by Alexandre Bonadiman Angeli • 117 points
10 posts
-
0
votes0
answers32
viewsQ: "protect" Javascript code
Good afternoon dear(as), I know that Client-Side programming is vulnerable and there is no protection. However, there are techniques (I don’t know the name) that compress or shrink the code. I’ve…
-
1
votes2
answers558
viewsA: Div captures the size of another
I managed to develop something that suits me, I will publish the answer so that if someone has future doubts and find my code viable, is available. First, within my HTML I added an image normally:…
-
2
votes2
answers558
viewsQ: Div captures the size of another
Good morning dear(as), I have an html and from time to time I need to insert an image that is a "}" to determine that in a song will repeat that excerpt. As my text adapts to the size of the screen,…
-
1
votes2
answers126
viewsA: Keep focus on the main page
Good morning dear(as), I thank those who participated giving an idea or even presenting codes, through programming was more difficult than I thought and none of the ideas worked. I searched several…
-
1
votes2
answers126
viewsQ: Keep focus on the main page
I have a page being my main screen, when selecting a value and clicking the button it will call another page referring to which I chose, the same opens in the form of Popup. I need this Popup to…
-
1
votes4
answers7563
viewsA: How to include and manipulate local JSON file?
The reply sent by all are correct, what was not cited and what is the problem of my code is that I do not use a local server. This is an algorithm model that solves the problem for who HAS the local…
-
4
votes4
answers7563
viewsQ: How to include and manipulate local JSON file?
I use JSON data to create the <options> of a <select>: jsonOptions.forEach(function(item) { var option = document.createElement('option'); option.text = item.description; option.value =…
-
1
votes1
answer39
viewsQ: Search Object Array value
I have the following code: jsonOptions = [{"description": "Carro 1", "product": "4"}, {"description": "Carro 2", "product": "5"}, {"description": "Carro 3", "product": "6"}, {"description": "Carro…
-
0
votes0
answers481
viewsQ: List amount of files in a folder
I am working on a small system and I am using web for N reasons, easy to customize, work with full screen (F11), everything is flowing fine. I arrived in a part that I need to list the number of…
-
-1
votes1
answer610
viewsQ: Pick up Input value
I know the title makes it sound like you already have millions of this question, but come on. My case works like this, I have a Datalist so I can autocomplete searching in an array of objects. When…