vote up 3 vote down star

What's your favorite way of testing javascript code snippets?

I like to use the browser's address field directly:

javascript:void(document.getElementById("textbox").style.display='none'))
javascript:void(document.write("Testing"))
javascript:alert(parseFloat("33.33"))

If using the latter trick, don't forget to wrap everything in a void() call or an alert() call, lest the page will be blanked out.

Alternatively, there is the Firebug extension on firefox in which you can edit javascript code arbitrarily.

Any other interesting ways out there?

flag

7 Answers

vote up 6 vote down check

Firebug Console Logging

link|flag
vote up 2 vote down

You can use JSBin to test snippets of code with snippets of html and some js frameworks.

link|flag
vote up 1 vote down

I use the tryit.asp on link text on w3school as I normally check my html with that site anyway. It also allows me to try variations before I go to far.

link|flag
vote up 0 vote down

In order to test small scripts across different browsers, I have a html file lying around which just contains

<pre><script>
</script></pre>

Logging gets done via document.writeln().

link|flag
vote up 3 vote down

I use Firebug by far the most times.
Otherwise I use the addressbar, or simply adding a button or link on the page.

link|flag
vote up 1 vote down

If you want to debug and run Javascript on the fly on IE, you can alos give Debugbar a try. It works great.

link|flag
I'll have to try this one out; I've been hurting for a Firebug-equivalent for IE. :-) – Ben Blank Mar 13 at 15:08
vote up 3 vote down

I use Firebug for pretty much everything JavaScript.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.