JS remove li de UL
var myList = document.getElementById('myList');
myList.innerHTML = '';
//Or with jQuery:
$('#myList').empty();
Witty Wildebeest
var myList = document.getElementById('myList');
myList.innerHTML = '';
//Or with jQuery:
$('#myList').empty();