I have a problem with fontawesome I can't remove an appended icon once it has icon-spin class
<h1>This is the title</h1>
<script>
function updateByAjax() {
$h1 = $('h1').append('<i class="icon-spinner icon-spin"></i>')
$.get('/url', function(resp) {
$h1.html(resp.title).find('.icon-spinner').remove()
})
}
</script>