à htmlhow puis-je ajouter la liste en javascript

$(document).ready(function() {
    $("<li>")
    .html('Scooter')
    .appendTo('ul');
});
Filthy Falcon