nonopolarity
nonopolarity

Reputation: 151006

What is the best way to view all Javascript code generated or linked for a page?

For Javascript code that is linked or generated, what is the best way to view all of them?

Examples are like the Google AdSense or Analytics code, such as

<script type="text/javascript"><!--
google_ad_client = "pub-xxxxxxxxx";
  [...]
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

I usually use Firefox's add-on Web Developer -> Information -> View Javascript. Are there other ways too?

Upvotes: 1

Views: 512

Answers (2)

Jonathan Fingland
Jonathan Fingland

Reputation: 57167

Firebug hands down the best web development tool there is.

Firebug lets you very quickly and easily see all of the javascript used on a page, as well as CSS, HTML, and even monitoring network requests.

You may also be interested in Javascript Deobfuscator. Despite it's name, it's actual much better than just a deobfuscator.

Upvotes: 8

lutz
lutz

Reputation:

Does Firebug do what you need?

Upvotes: 2

Related Questions