Posts by Amauri Santos • 47 points
4 posts
-
0
votes1
answer242
viewsQ: How to enter checkbox validation logic and display message if not selected
Currently, in my quiz, the user can proceed to the next question without at least selecting an answer option. I am trying to put a condition where If an option is not selected, display an alert…
-
0
votes0
answers50
viewsQ: I cannot access the text that is inside an object array in Mongodb after applying foreach
I am unable to access my array of objects that have been configured in my Schema. Schema using foreach. const quizSchema = new mongoose.Schema( { question: String, answers : [ {first: String},…
-
2
votes1
answer54
viewsQ: I cannot remove the new item created in my Whole List - Using Vanilla
The items that are already in the list I can delete, but after I add a new item in the list, the remove no longer works. I took care to create the same class for my SPAN before adding it to my li,…
javascriptasked Amauri Santos 47 -
2
votes1
answer183
viewsQ: Click on Span (recycle bin icon) to trigger in my li fadeOut events and then remove
I’m creating an Todo List with vanilla js and ran into a problem. When I click the recycle bin icon (within my span) I can’t delete my li. They could point me the way so that I can do with…