Posts by André Abadesso • 318 points
6 posts
-
7
votes1
answer3336
viewsA: Set county boundaries in Googlemaps
This ibge site that you passed serves us well, we will do a reverse engineering on it to discover the polygons! We can start understanding how this map is rendered on their website, so we can use…
-
1
votes1
answer1195
viewsA: how can I enter the value of an input type = "file" into another hidden input type
You can pick up the contents of a file using a Filereader, turn it into a Base64 string and put it into Hidden input var fileUpload = document.getElementById('fileUpload'), hiddenField =…
-
2
votes2
answers64
viewsA: Clone of an image
You almost got it right, you just got it wrong when you gave the appendchild, you’re trying to append the body, when you should append the svg root, try the following: HTML: <svg width="90%"…
-
3
votes1
answer106
viewsA: What is Javascript Override?
You are having this difference between the website accessed via browser and the download via PHP because the website in question probably uses javascript to render its parts, what you can do is use…
-
1
votes1
answer98
viewsA: hint of implementation
You can do the following, add a Listener in the modifiVideo input that runs when its text is changed. This Thinker performs a function that is "debounced", that is, only runs after x milliseconds…
-
3
votes1
answer1862
viewsA: Pass PHP variable value by Javascript
Cleverton, what you need to understand is that PHP runs on the server and Javascript in the case, in the browser. Imagine the security flaw that would be if javascript could access the database, as…