==================================================[ START ]====

Hi all,

For beginners this could be helpful - How to get the value of each element in your page using Javascript?

Lets say you have <div id=”newid”></div>

use this:

var element_value = document.getElementById(&quot;newid&quot;).value;

Hope it helps!

====================================================[ END ]====