Friends,
In my page, with this DIV listed below, I would need to "read" the id that is in the < the id="memo-list-delete-6_2544_0"> or the value "memo-list-delete-6_2544_0" and put in a variable to use later .. like do this with JS?
<div id="memo-list-6">
<i>Testo 00</i>
<pre> Texto 01 </pre>
<a id="memo-list-delete-6_2544_0" >
<span class="UmaClasse"> </span>
</a>
</div>
I tried to do:
var MinhaInfo = document.querySelectorAll('#memo-list-6 a').length;
but it only returns a number ...