Showing 1 – 1 of 1 replies
vpalukuru

Can the following javascript be moved […]

vpalukuru PURCHASED
8 years ago
Hi,

Can the following javascript be moved to the bottom of the page (just above the closing body tag) instead of in the head tag

<!-- Responsivity for older IE -->
<script src="js/respond.min.js"></script>

Thanks,
Vijay
ondrique
ondrique SELLER
8 years ago
Hi Vijay,

I would stick with the head tag placement, script is super tiny and is neccessary for correct IE 8 rendering.

What you can do is to wrap it in conditional tag and include CDN, so it won't be blocking other request to your domain.

```
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
```

Have fun,

o.