I'm using Google map to show objects in real time.
I made a function in Javascript which is refreshed every 3 seconds and in that it updates those marked on the Google map.
Something like:
vmarcador[value.Id] = new google.maps.Mark...
I have a method called readFileCredentials that has the purpose of opening a file and returning the data that was inside that file, it follows the code of this method:
readFileCredentials = function(file, cb){
var _path = 'data-sour...
I'm developing a web application on the .NET platform and thought of having the user type the zip of their address and automatically populate the textboxes with street, neighborhood, city, and state data. But in my code it does not work, I do no...
I'm making a plugin that at some stage runs a function.
Example:
<button class="btn btn-warning btn-lg" id="act"> Action </button>
(function($) {
$.fn.foo = function(options) {
var opts = $.extend({}, $.fn.foo.defaults,...
I need the character '\' (Reverse Solidus) to be included with the value of the captured group.
Example:
In the sentence assets / pdf / regulation_demais_ddds_ Hi Mod.pdf , I need the excerpt
/ pdf
be replaced by
\/pdf\/
f...
I use the highcharts API to generate graphs from information collected in a database, the problem is that when it comes to many points in your series, it HIDES and GENERATES a Mean in periods. .
See the example in this jsfiddle . The highe...
When I enter day 01 as the date, it returns me the last day of the previous month. What is the reason?
function myFunction() {
var fromdate = new Date(document.getElementById('data_venc').value);
alert(fromdate);
var dd =...
I have the latitude and longitude of a location in Google Maps, obtained from a marker and its own function, I would like to know if anyone has an idea or function that returns the complete address of the location based on these two param...