Posts by jope_canto • 39 points
3 posts
-
3
votes1
answer229
viewsA: How to make an orderly list?
You can use an ordered list of html "ol" and the children would be inserted dynamically by a loop const target = 20; const ol = document.querySelector('ol'); let lastValue = 0; for (let index = 1;…
-
-1
votes1
answer80
viewsA: Is it necessary to specify the MIME type in the src property when rendering an image in Base64?
mimetype is divided into type/subtype In the 2 cases vc specified a mimetype image type, with the difference that in the first example vc specified the subtype "jpeg" You can see deeper here…
-
1
votes1
answer32
viewsA: How can I change the behavior of an active button according to time or clock?
Hello, I do not know if I understand very well, in your code currently you are adding the behavior with the click, and I would like it to be automatic with the passage of time, it would be this? In…