Using jQuery, what\'s the performance difference between using:
$(\'#somDiv\').empty().append(\'text To Insert\')
and
$(\'
The correct syntax is
$("#somDiv").html("Hello world");