vote up 3 vote down star
1

is there an online javaScript code snippets resource that lets you run code?

this would especially be useful for example code when trying to answer questions on SO!

thanks,

Josh

flag

4 Answers

vote up 7 vote down check

I prefer JS Bin (and use it a lot for examples here on SO.) It allows you to save your JavaScript & HTML online, which is a big requirement for me. Also, it provides easy access to all of the frameworks in the Google AJAX Libraries API.

link|flag
perfect - just what i was looking for – Josh Jul 2 at 13:49
vote up 1 vote down

How about this website?

I normally just keep a shell HTML file on my desktop with the minimal amount of tags and some script tags so I can try stuff out using it before I post my answers.

link|flag
vote up 0 vote down

W3schools.com does ... Try the "TryIt Editor".

I'm not sure how complex they allow scripts to be, though.

link|flag
vote up 0 vote down

Use Firebug and open up the console. You can choose options -> "larger command line" to paste in multiple lines of javascript.

The advantage of using Firebug is that you can execute the JavaScript in the context of whatever page is currently open. This means you can test a function that accesses the DOM of your page and see that it works correctly.

I highly recommend this method of testing if you are doing any serious JS development.

link|flag

Your Answer

Get an OpenID
or

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