Posts by jackson alves • 51 points
2 posts
-
0
votes1
answer40
viewsA: Pure Javascript to delete input fields
Hey there, Patrick boy! So I thought of the following solution: replace the old javascript code (because as you said it really only gets called once) for a function and add an onclick in the link.…
-
2
votes1
answer220
viewsA: How to Change a Background Image After a While
You can resolve this using Javascript: const tempo_de_delay = 5000 setTimeout(() => ( document.body.style.backgroundImage = "url('https://picsum.photos/600/300')" ), tempo_de_delay) Remarks: the…