Posts by Julia Helena • 63 points
2 posts
-
0
votes1
answer51
viewsQ: Load googlemaps in Jquery
I’m trying to upload a map, only the map won’t boot. The code I use to load the map: function carregaMapa(endereco) { var address = endereco; geocoder.geocode({ 'address': address }, function…
google-mapsasked Julia Helena 63 -
6
votes2
answers1492
viewsA: How do I make Alert disappear after I display it in a div?
To make Alert run for a certain period of time, use the setTimeout function. As in the example: $("#erro").show(); setTimeout(function () { $("#erro").hide(); }, 3000); In case, this '3000' means it…