For some reasons the code does not run.
newView = ui.WebView()
newView.name = 'song'
newView.frame = v['view1'].bounds
newView.content_mode = ui.CONTENT_SCALE_ASPECT_FIT
newView.load_url(displayItems[row]['itemURL'])
newView.eval_js("setSong('<h3>Title of the Song</h3></br><p>Joy to the world, the Lord is come.</p>')")
v['view1'].add_subview(newView)
v.song = newView
And here is the Javascript.
function setSong(element){
var div = document.getElementById("lyrics");
div.innerHTML = element;
}