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
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.