David Lesches

Results 2 comments of David Lesches

I was having the parse error with IE8, I corrected it using this - http://www.jspatterns.com/the-ridiculous-case-of-adding-a-script-element/ i.e. I replaced `doc.documentElement.appendChild(script);` with ``` var first = document.getElementsByTagName('script')[0]; first.parentNode.insertBefore(script, first); ```

I saw this on the Ruby Weekly and thought I'd just add my two cents to this enhancements thread. This is a great feature and something I wanted to add...