Posts by André Lorenz • 156 points
6 posts
-
0
votes3
answers826
viewsA: Calculate hours worked
A very good library for handling dates is Moment.js For example const first = moment('03/05/2019 08:00', 'DD/MM/YYYY HH:SS'); const second = moment('03/05/2019 12:00', 'DD/MM/YYYY HH:SS');…
-
0
votes3
answers840
viewsA: DIV Bootstrap Alignment
Follow the class rule for each screen type larger than 576 class. col-Sm- larger than 768 class . col-Md- larger than 992 class . col-lg- larger than 1200 class . col-Xl- You can combine the values,…
-
2
votes1
answer722
viewsA: NPM - modules and proxy
You can configure the NPM proxy with commands npm config set http_proxy http://usuario:[email protected]:porta npm config set https_proxy http://usuario:[email protected]:porta…
-
6
votes4
answers6679
viewsA: How to force numeric keyboard display on the smartphone when clicking an input?
In Html5 you can use inputmode: <input inputmode="numeric">
-
1
votes1
answer47
viewsA: Javascript generating characters that are not present
This value is coming from your checkbox at this time link2= document.getElementsByName("link")[2].value +'</div>\n</div>'; the value of checkbox is on...…
-
2
votes1
answer70
viewsA: Javascript: Prioritize value in concatenation (.Concat)
From what I understand you want to order according to the camps of Prival right? I made an example by adding the values in an array, where you can manipulate in several ways... Follow the example:…