Using jQuery to change the HTML, but "ldquo; view source & rdquo; shows the old

advertisements

I am using jQuery to dynamically change the loaded html, and while it does work, when I view the html source of the page in the browser (Chrome) using "View page source" menu, what I see is the old, before changes applied, html code.

Is there a way to see the "after change" html, as at the end of the day, this is what I see in the browser.


View Source will show the initial rendered Html in most cases, Have a look at the DOM model using the development tools.

In Chrome: Ctrl-shift-i

Then look at the Elements tab, the html will change, when manipulated.