type in chrome (or other browser) addressbar: javascript:alert(document.body.innerText);void(0); you then have your script scrape that alertbox and after that you press okbutton. little more subtle then a msgbox javascript: var textbox = document.createElement('input');textbox.type = 'text';document.body.appendChild(textbox);textbox.value=document.body.innerText;void(0); if more questions on this subject please start a thread in support section as I can imagine this is a little more adva