dave123
dave123

Reputation: 421

read content in webbrowser input field

Something I have been trying to do and still can't get done. Reading the information typed in a website input field and being able to copy that.

Is there a way I can read the ty

Upvotes: 1

Views: 4116

Answers (2)

RRUZ
RRUZ

Reputation: 136441

try these articles about using TWebBrowser and delphi to read data from a web page.

Upvotes: 4

dustinl4m3
dustinl4m3

Reputation: 159

Javascript

document.getElementById('input-field-id').value 

returns the contents of an input box. What are you trying to do?

Upvotes: 1

Related Questions