Are you sure that it's a <form> at all and not an ajax "form"? (Using JS
to take data from fields and post to a destination without there ever being a
<form> tag present anywhere.)
On 11/18/2010 10:56 AM, gikjl wrote:
> 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);
> .....
>
--
Jay Rossiter http://www.cothlamadh.net/
503.896.6187 [email protected]
--
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.