How cand I view or screen scrape the html code that is generated by javascript or jquery. I can view the javascript code, but not the html generated by the code.
I need to do it programmably, going to a web page programmably, and then getting the code that is generated programmably from javascript adn jquery as well from it.
JAYHAWKER
Participant
1252 Points
1896 Posts
You can view the html of a web page by clicking "View Source", how do you view the jquery or java...
Apr 23, 2012 05:56 PM|LINK
How cand I view or screen scrape the html code that is generated by javascript or jquery. I can view the javascript code, but not the html generated by the code.
Shellymn
Contributor
2612 Points
485 Posts
Re: You can view the html of a web page by clicking "View Source", how do you view the jquery or ...
Apr 23, 2012 06:04 PM|LINK
try this...
To view the generated source in IE you can type the following in the address bar
for more details please go through this blog
http://ericappel.net/blog/ViewHTMLSourceGeneratedByAJAX.aspx
JAYHAWKER
Participant
1252 Points
1896 Posts
Re: You can view the html of a web page by clicking "View Source", how do you view the jquery or ...
Apr 23, 2012 06:24 PM|LINK
I need to do it programmably, going to a web page programmably, and then getting the code that is generated programmably from javascript adn jquery as well from it.
Mark-yu
Participant
888 Points
127 Posts
Re: You can view the html of a web page by clicking "View Source", how do you view the jquery or ...
Apr 25, 2012 10:07 AM|LINK
Hi,
Yes, you view source code by clicking "View Source" and If you want to inspect the page, you can press the button F12[IE, Chrome etc]
Use FireFox browse you can install Firebug:-https://addons.mozilla.org/en-US/firefox/addon/firebug/
JAYHAWKER
Participant
1252 Points
1896 Posts
Re: You can view the html of a web page by clicking "View Source", how do you view the jquery or ...
Apr 25, 2012 10:24 AM|LINK
I am not having any luck. I still only see the javacript code, not the results of running the code.