what component can use to replace <span>?

HI, can i check whether is there a suitable component which enable for me to replace the

text of my span tag as follow ,

<span id="badge_no_of_task" class="badge">35</span> 

where i can use delphi code to replace the Number : 35  to something else ?


For just a span, there is not a component wrapper.
You can however do this in code with

document.getElementById('badge_no_of_task').innerHTML := '36';