Well ... my doubt is how to capture the value that lies between:
<ALGUMATAGHTML> O valor definido arqui</ALGUMATAGHTML>
The value I want to capture is:
<span style="" id="streamurl">Aqui!!!</span>
I tried with JavaScript but it did not work. Code in JS:
var url = document.getElementById('streamurl').value;
alert(url);
Does anyone know how to handle this in JS?