Reputation: 1083
I am having a set of pages where in I am using JQTouch jquery library. How can I see the page source after an Ajax call. I suppose the DOM gets replaced, but when I see the page source I am not able to see the updated set of contents. This is hampering my debbugging. Does anyone know of some way to see the page source....
Upvotes: 0
Views: 202
Reputation: 13898
Firebug can show you the source for the current DOM. However if there are errors in the actual source code used to generate that dom you may get unspecified behaviour, where the page appears to work in one browser and doesn't work at all in another.
Upvotes: 2