JSFiddle - React, Tailwind, and code Playground
HTML
<span id="ctl00_cpMainContent_LabelCL">7</span>
JavaScript
var span = document.getElementById('ctl00_cpMainContent_LabelCL');
var text = span.firstChild;
alert(text.textContent);
<span id="ctl00_cpMainContent_LabelCL">7</span>
var span = document.getElementById('ctl00_cpMainContent_LabelCL');
var text = span.firstChild;
alert(text.textContent);