Posts by Samuel Moraes • 11 points
2 posts
-
1
votes2
answers47
viewsA: How do I make an delete button disappear after it appears when it is called in a click-like addeventlistener?
Good thanks to the reply of the friend @Rodrigo Carvalho de Brito Follows answer from the same: $('add_time').on("click", function(){ $('rm-time').show(); }); $('rm-time').on("click", function(){…
-
-3
votes2
answers47
viewsQ: How do I make an delete button disappear after it appears when it is called in a click-like addeventlistener?
I would like the "remove time" button on the page not to appear again! The page comes with an already time field The remove time button does not appear on the rendered page When the user clicks on…