js retirer li de ul

var myList = document.getElementById('myList');
myList.innerHTML = '';

//Or with jQuery:
$('#myList').empty();
Witty Wildebeest