fontawesome に問題があり、追加されたアイコンにicon-spin
クラスがあると削除できません
<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>