I am trying to process the text in textarea [on 'your' Facebook page, where one can write status updates etc] and replace it with new text. What I tried so far: calling
document.body.innerHTML.replace
or using Improved sendkeys on it like this:
$('#'+textarea.id).focus();
$('#'+textarea.id).val('');
$('#'+textarea.id).sendkeys("replacement");
$('#'+textarea.id).sendkeys('{enter}');
$('#'+textarea.id).focus();
$('#'+textarea.id).trigger('keypress');
To simulate typing into the textarea. Using the above methods (or variations therof) result in the following scenario:
- Textarea reads: "initial text" (whatever the user enters);
- Replacing textarea contents with either of the above methods;
- Textarea reads: "replaced text";
- Pressing the 'post' button;
- What gets posted is: "initial text";
The process works however, if the user returns to the textarea and adds any character of just moves the caret (it also works for other simpler textareas). Inspecting the html suggest that there are a few elements that store what the textarea has, but the mechanics of grabing the textareas contents are eluding me. I don't know if this makes a difference, but it's part of a chrome extension's content script
fbPost("text")with it, and do the same for other sites you might want to post the text to. – Cerbrus Nov 23 '12 at 7:48