In a HTML page, i want to pick the value of a javascript with jsoup -
<html> <script type="text/javascript"> var map = null; jquery(function($) { l.marker([50.065407, 19.945104], {title: 'cat'}) .bindpopup('<h3>cat</h3><p><strong>color</strong>black<br><strong>dog</strong>white</p>') .addto(map); </script> </html> i need values <h3> , <strong>.
script = doc.select("script"); but how get:
"cat color black"
"dog white" ?
Comments
Post a Comment