gyaani_guy
gyaani_guy

Reputation: 3209

html/javascript editor that shows result as you type

Is there a html/javascript editor that shows the result in a side pane instantly without having to save the code, alt+tab and refresh . Don't need any other features. Just learning javascript and it would be great if there was something that would show instantly the result of the code.

This is the final autohotkey script , which saves , switches to firefox , swithes to the first tab and reloads.:

F9::
Send ^s
Sleep, 100
if WinExist("ahk_class  MozillaWindowClass")
  {
  WinActivate
  ControlFocus, MozillaWindowClass
  }
Sleep, 200
Send ^1
Send {F5}
return 

Upvotes: 0

Views: 283

Answers (3)

Madhu Kasic
Madhu Kasic

Reputation: 212

w3schools.com has tryit asp pages to practice while learning. I found this very helpful as a beginner when started with javascript. JSfiddle is another option.

Upvotes: 0

Damon Bauer
Damon Bauer

Reputation: 2726

I would suggest using Tinkerbin - http://tinkerbin.com/. It can auto update and save your work for later too.

Upvotes: 0

ayyp
ayyp

Reputation: 6598

http://jsfiddle.net/ It's an online editor and works rather well for what it sounds like you're trying to do. It comes with some common libraries built in and it's easy to just start up and begin working. When I first started learning javascript I found it incredibly helpful.

Upvotes: 2

Related Questions