I have an HTML page, and I want to select the data that is between some
function. But since it isn’t a closed tag, I have no idea how to select it.
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
... what it is about
</head>
<body onload="moveToCurrentItem()">
<div>
<table width='866' cellpadding='0' cellspacing='0px'>
.... stufff I am interested in.....
</table>
</div>
</body>
</html>
I am trying with Xpath (XML), but didn’t get that, nor with Regexpr (String), not even sure what node to use. Any suggestions would be very kind :)