HTML tags show up in text

Instead of :

 $item('#bio').text = itemData['artistId']['vieBio'];

try:

 $item('#bio').html = itemData['artistId']['vieBio'];

But remember, the text element has only limited support for html. It’s documented.