33

I tried to open http://jsfiddle.net/ in IE8 with BrowserMode-- IE8 and Document Mode--IE8 in developer tools. In other browsers it's working fine, and even in IE9 it's working fine. But I see javascript errors in IE8 and older versions of IE.

SCRIPT1010: Expected identifier 
EditorCM.js?Spring, line 105 character 25

SCRIPT438: Object doesn't support property or method 'addEventListener' 
heyoffline.js?Spring, line 24 character 5

SCRIPT5009: 'MooShellEditor' is undefined 
jsfiddle.net, line 91 character 7

SCRIPT5007: Unable to get value of the property 'editor': object is null or undefined 
Actions.js?Spring, line 130 character 5

this is how it's rendered in IE8 enter image description here

Is jsfiddle working with IE8 and older versions?

bogdan.mustiata
  • 1,725
  • 17
  • 26
SRy
  • 2,901
  • 8
  • 36
  • 57
  • I would recommend a domain or private webserver where you can upload HTML files for testing in IE8 -- I haven't found an online one that works (JSFiddle, JSBin, Code Pen all don't work in IE8 for me) – Hanna Jun 29 '15 at 16:13

2 Answers2

52

You can find more info here. In short:

For all unsupported browsers (like IE8 or mobile phones) please use DRAFT feature.

  • Log in to the service on your favourite browser.
  • Create fiddle and Run it
  • On IE8 open the http://jsfiddle.net/draft/
Tim Stone
  • 19,119
  • 6
  • 56
  • 66
Peter
  • 13,733
  • 11
  • 75
  • 122
  • 1
    You can also use some alternative services like JSBin that seems to work with IE8 (until now). – Doc Davluz Dec 13 '13 at 16:51
  • 7
    To just test if your fiddle shows your problem in IE8, you could also test it by using the 'Collaboration > Share full screen result' function – Jacob van Lingen Feb 17 '14 at 10:27
  • 7
    A short time following this post, a message was added flatly stating that JSFiddle "does not support IE8." Realize IE8 is an archaic old browser, but some of us in corporate environs don't have any choice in the matter :( – David W May 30 '14 at 13:45
  • Note that this requires you to be logged-in to JSFiddle on both browers. – pimlottc Jan 05 '15 at 17:54
  • @PomCompot:problem with JSBin is that most banking institutions doesn't allow access to JSBin, and they like to stick to IE..! – raja777m Apr 15 '15 at 15:48
4

Create your jsfiddle on a modern browser then when you want to test on IE8 use the full screen link.

Share > Share full screen result.
Gudradain
  • 4,653
  • 2
  • 31
  • 40