Answers for "how to add adding to a list in html with javascript"

0

to htmlhow can i add the list in javascript

$(document).ready(function() {
    $("<li>")
    .html('Scooter')
    .appendTo('ul');
});
Posted by: Guest on December-15-2021

Code answers related to "how to add adding to a list in html with javascript"

Browse Popular Code Answers by Language