It works for me.
The structure of the html for the text looks like

<div id="your-id" class="bubble-element Text">
  <div class="content">your text here</div>
</div>

In the developers tool of the browser you can try document.getElementById('your-id') to see if there is actually an element with the id and reveal it in the inspector.

1 Like