I am trying to debug an application that is an intranet app behind a
firewall accessible only via vpn. The problem I am having is that the
tables sorting is now working properly in Firefox 2.
Doing a "view source" only yields the template, as the the page is
written as a response back from an AJAX call. So, I went to internet
explorer and did a javascript:docu ment.write(main wapper.innerHTM L). My
intent was to build a page that was close to what the actual page was by
doing a "view page" from there and cutting and pasting.
The problem with this procedure is that it converts things like id="foo"
to id=foo. Doing a validation with W3C then yields tons of errors
stating that SHORTTAGS YES needs to be there. Researching how to put it
in gave me to info to change the doctype. I don't want to do that, as I
want to keep it "strict" and XHTML.
How can I get the writing to not strip off the surrounding quotes?
While we are at it, --- and this may sound simple ---, W3C validation
with "strict" complains about align="center" for <td>, and about other
attributes. How can I write these to accomplish the centering and still
be compliant with the "strict"?
firewall accessible only via vpn. The problem I am having is that the
tables sorting is now working properly in Firefox 2.
Doing a "view source" only yields the template, as the the page is
written as a response back from an AJAX call. So, I went to internet
explorer and did a javascript:docu ment.write(main wapper.innerHTM L). My
intent was to build a page that was close to what the actual page was by
doing a "view page" from there and cutting and pasting.
The problem with this procedure is that it converts things like id="foo"
to id=foo. Doing a validation with W3C then yields tons of errors
stating that SHORTTAGS YES needs to be there. Researching how to put it
in gave me to info to change the doctype. I don't want to do that, as I
want to keep it "strict" and XHTML.
How can I get the writing to not strip off the surrounding quotes?
While we are at it, --- and this may sound simple ---, W3C validation
with "strict" complains about align="center" for <td>, and about other
attributes. How can I write these to accomplish the centering and still
be compliant with the "strict"?
Comment