This one is driving me crazy. The responseText for a site I am
hitting contains a table with a form inside. It also contains other
tables and elements. For some reason the responseText contains all
the elements of the page except the Form. Why would that get dropped
out? It is inside a root Table element.
I understand that Firefox is removing some top level elements like
head, body etc. But why remove a table?
The Table being removed is not at the beginning or end.
Any ideas?
I am using this code:
GM_xmlhttpRequest({
method: "GET",
url: url,
onreadystatechange: function(responseDetails) {
if (responseDetails.readyState == 4) {
if(responseDetails.status == 200)
{
var pageData = responseDetails.responseText;
// This next var should find the match, but does not
var rename = pageData.match(/form method\=/);
$('#theResponse').html(pageData);
.....
--
You received this message because you are subscribed to the Google Groups
"greasemonkey-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/greasemonkey-users?hl=en.