i am trying to figure out how to extract the json data from the following:
HTML RESPONSE
<html><body>
<pre style="word-wrap: break-word; white-space: pre-wrap;">
{'name':'john doe'}
</body></html>
I have Tried
document.body.innerHTML
which returns null
and
document.body.outerHTML
which returns
<body><pre style="word-wrap: break-word; white-space: pre-wrap;">{'name:'john doe'}</body>
What i want as a string
{'name':'john doe'}
Any help will be highly appreciated.