Answers for "how to add something to a list using 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 something to a list using javascript"

Browse Popular Code Answers by Language