0
Help with my to do list!
The list items should have checkboxes when added. Please help me with this. https://code.sololearn.com/WYI6qd5Jk6gr/?ref=app
3 Respostas
+ 4
Here's some information of using checkboxes on unordered list:
https://stackoverflow.com/questions/22775718/adding-a-checkbox-to-an-unordered-list-using-jquery
http://www.cssnewbie.com/style-unordered-lists/
I have modified your code to have checkboxes on the list item, I suppose you're about to add multiple selection for items to delete? I have set the checkboxes to have different value property. How multiple item deletion is done is yours to implement.
Hth, cmiiw
https://code.sololearn.com/WcbrwTuWAlxt/?ref=app
+ 1
Try this:
<li><input type="checkbox">Box1</li>
+ 1
Thank you