bassjobsen / wp-defer-loading

Defer loading javascript for WordPress. Without any additional library. Just the way Google ask you to do it.
4 stars 2 forks source link

Fix for IE8 #15

Closed brianfryer closed 9 years ago

brianfryer commented 9 years ago

appendChild() in IE is not applied to <script>-elements (http://stackoverflow.com/a/7091055)

This pull request fixes this issue by assigning a string using the .text property instead.