Author Topic: Real-time preview html editor  (Read 2643 times)

0 Members and 1 Guest are viewing this topic.

Offline Keoni29

  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2466
  • Rating: +291/-16
    • View Profile
    • My electronics projects at 8times8
Real-time preview html editor
« on: June 24, 2014, 03:23:23 pm »
I am looking for a free html editor with a real-time preview window.  I'd prefer a linux version, but I could run the editor in wine.
If you like my work: why not give me an internet?








Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: Real-time preview html editor
« Reply #1 on: June 24, 2014, 03:27:19 pm »
w3school's editor works well for me.
You have to load it with one of the defaults, though, i just picked this one because it was in my history: http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_parseint

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline Streetwalrus

  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3821
  • Rating: +80/-8
    • View Profile
Re: Real-time preview html editor
« Reply #2 on: June 26, 2014, 09:40:46 am »
You could also use your favorite text editor and have firefox refresh the page every time you save (or make your build-and-run key trigger it, same deal). Not exactly real time but that works.

Offline Keoni29

  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2466
  • Rating: +291/-16
    • View Profile
    • My electronics projects at 8times8
Re: Real-time preview html editor
« Reply #3 on: June 26, 2014, 09:42:59 am »
Hey, what about a meta tag that refreshes the page automagically? That's what I did with my server statistics page: http://cookiecraft.eeems.me:81/minecraft/
<meta http-equiv="refresh" content="4"> <!-- Will refresh every 4 seconds -->
If you like my work: why not give me an internet?








Offline Streetwalrus

  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3821
  • Rating: +80/-8
    • View Profile
Re: Real-time preview html editor
« Reply #4 on: June 26, 2014, 09:43:49 am »
That works too but you have to wait for the refresh cycle so not exactly as instant.