I'm trying to get the Javascript output on when I match the given value in a var, I want to output that value that I tried to match:<br><br>Example JS:<br>x = '';//some INNERHTML in a document<br>if(x.innerHTML.match
(/(.*)/i))<br>{<br> valuefound = RegEx.$1;<br>}<br><br>I've been reading my python book and tutorials and google search and google code search trying to understand and I'm still not quite understanding how to do it.
<br><br>-Lamonte.<br>