In this question that I posted (and was answered), I found out how to properly assign the value of a textbox to the value of a label. The answer was to use either
$('#txtBranchName').val($('#lblBranchName').html());
or
$('#txtBranchName').val($('#lblBranchName').text());
Is one preferable over the other? Are there performance differences, or would one method not work but the other would in particular situations?