How do I get a value from a 'pre' tag?
<pre>43453453</pre>
For example, I know how to get the tag, but how do I get the content inside it?
var x = documentGetElementsByTagName("pre");
I tried using innerHTML, and textContent, but those didn't work for me.