I have this code:
let inicial = 0
let vPag = 3
const numeros = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30];
render()
function resultadoPag(pagina){
vPag = pagina.value;
render();...
I am trying to modify the background color of my jquery datepicker, I searched the internet for some solutions brought me this code:
.ui-datepicker {
color:white;
background-color: red;
background: red;
}
So it does not modify the calenda...
Hello. I would like to know a code to display a form as a popup when the user closes the page. That is, that moment when he takes the cursor over the browser. Because the page was made by the RD tool.
Form in question:
link
Form Cod...
Does anyone know why the function this.setState (token: token_here) is not working or returning error?
export default class Init extends Component<Props> {
state = {
// Evita que o código seja executado duas vezes....
I have the following variable in $ scope of Angular JS, with an arrow function:
$scope.cad.nome.toLowerCase().replace(/\b\w/g, l => l.toUpperCase());
I need to format your content, which is someone's full name. It is working until the...
I hope you understand the situation:
By programming a web page, I have created a data field where the user chooses the date that to filter the information contained in the site, ie only display information that reflects the chosen day o...
I'm using mongodb with mongoose in nodejs, I have my schema like this:
const UserSchema = new mongoose.Schema({
username: {
type: String,
unique: true,
require: true
},
balances: {
dolar: {...
I have a website in the air and I wanted to have the information of how many people have accessed by day and week, so I created a login in google analytics and registered my site.
Google Analytics generated a code with my ID to put on the hea...
Hello, the server is returning me the following json
this.itens = {
id: '',
data: '',
hora: '',
cliente:{
nome: '',
cpf: ''
}
}
I need the client data not to be in a second json but in a field ex clienteNome: ''...