I have a route system that captures user data and maps routes on the map:
geocoder.geocode({
'address': endereco + ', Brasil',
'region': 'BR'
}, function (results, status) {}
The problem is that it is returning addresses from all...
I am setting up a function to do the calculation using percentage.
In my online test it works.
link
$(document).ready(function () {
valorTotaldaNota = "1.000,00";
valorTotaldaNota = valorTotaldaNota.replace(",", "");...
I have to make a code that calculates Reais according to 2 dates informed. I have 2 inputs of type text to report a data in dd/mm/yyyy format. The A input is data inicial and the B is the data fin...
I have two divs, the two have the same id, target1 .
I need to get two divs in JavaScript and apply a function in the scroll event of div1 . This function will be responsible for getting the scroll value of div1 and apply i...
Is it possible to change the options in Toggle Explode ? For example: it has nine divisions by default, is it possible to modify the number of parts it explodes and the size of those parts? I also wanted to know if JQuery allows cha...
When I click on the 'new' button calling the function to check the data, inside it I call another function to check the date it was informed!
function f_veri_dados()
{
// existem outros dados
// Data da Garantia
f_veri_data(tx_dt_gt...
I would like to know how I can do a millisecond to date conversion within a field in a json.
For example
$http.get("http://teste").success(function (dados) {
ng.locations = $.map(dados, function(job) {
return job.j...
I'm learning react and I came across this example (which works normally):
import React, { Component } from 'react'
import './Teste.css';
class Teste extends Component {
constructor(props) {
super(props);
this.state = { message: 'H...
How to delete a folder from storage?
To delete a file I use:
firebase.storage().ref('pasta/arquivo.png').delete()
But it does not work if I use it directly in the folder:
firebase.storage().ref('pasta').delete()
I have a single-page and need to save the value of a variable in the database.
How to do this using angular js?
This variable receives the title from my single-page.
This title will be customized by the customer.
Would anyone have a clue h...