views:

27

answers:

4

Is it possible to run jQuery code in jsbin.com?

A: 

Yes you have default example just click preview

hence the message

Hello World - this was inserted using JavaScript

c0mrade
Yes, but i want to run jquery statements here, just like `$('#hello').html('Hello World - this was inserted using jQuery code');`
Mithun P
try using http://jsfiddle.net/ instead choose the proper framework from the left side
c0mrade
A: 

Try Googles JQuery playground website instead.

krock
thats pretty cool, but with Google playground I can't share the code with others
Mithun P
+2  A: 

For jsbin.com - You can select the javascript framework from Include Dropdown on right side.

jsfiddle is also a good option.

Krunal
wow, thanks alot
Mithun P
+1  A: 

you should know that jsbin is divided into two coding window...

left side (JavaScript)

put js codes here like jQuery..

right side (HTML)

if you notice, you can write html/css codes here...
on the top here, you can find a select option, choose jQuery so that your jquery codes will run...

Reigel
Thanks @Reigel, i got it
Mithun P