Posts by Caio Santos • 15 points
4 posts
-
-2
votes1
answer55
viewsQ: How do I "capture" the full route of an http call with express router?
I’m using the express.router nesting my route into several "router.use()". It is possible to take the final route via console? ex: const routes = Router(); const v1Router = Router(); const…
-
0
votes1
answer353
viewsA: Remove "x" from Input type time
I was able to remove the scroll bar and the "x" that appears on Chrome with these codes input[type="time"]::-webkit-clear-button { display: none; } input[type="time"]::-webkit-inner-spin-button {…
css3answered Caio Santos 15 -
0
votes1
answer353
viewsQ: Remove "x" from Input type time
How do I remove this xis and scroll bar from input time? I want the field to be clear, only by the hour. Remembering that this "xis and this scroll bar" are already input time standards…
css3asked Caio Santos 15 -
-2
votes1
answer1248
viewsQ: Convert hours and minutes into javascript minutes
I need a method that converts the time and minutes typed in < input type="time" > by user in minutes. ex: 01:35 return 95 minutes it is possible to perform operations with this input ?…
javascriptasked Caio Santos 15