0

For example, I found that calling something like this

document.getElementByID('myElement').value.trim();

crash in IE8 because strings don't have trim() in IE8. Is there any way (e.g. using some website in the internet) to run such short, one-off code to verify issues like this without having to find a computer with Internet Explorer?

user69715
  • 825
  • 9
  • 15

2 Answers2

0

I use Browserling all the time to make sure html renders properly. I know it does run javascript, but that's in the cloud. The paid version has a feature called "bug hunter" but I don't know exactly what it does. They have a 30 day money-back guarantee so it might be worth trying it for a month. Or you could email them and ask.

Lil Devil
  • 663
  • 5
  • 10
  • A couple of other links of interest: https://stackoverflow.com/questions/11219731/trim-function-doesnt-work-in-ie8 and http://caniuse.com/ – Lil Devil Dec 01 '15 at 23:08
-1

Use the Developer tools in the newer versions of IE. Open IE (desktop mode) and press F12. In the toolbar, you can select the Browser Mode and the Document Mode.

EylM
  • 5,967
  • 2
  • 16
  • 28