LOADING JAVASCRIPT
Compressed
Long cache time
One file
Content-Encoding: gzip
Cache-Control: max-age=315360000
Friday, 12 April 13
Slide 55
Slide 55 text
JAVASCRIPT
Content goes here
Slide 56
Slide 56 text
JAVASCRIPT
Content goes here
Slide 57
Slide 57 text
JAVASCRIPT LOADING
var s = document.createElement('script');
s.src = "app.js";
document.head.appendChild(s);
Friday, 12 April 13
Slide 58
Slide 58 text
@if(isModernBrowser) {
}
CUTTING THE MUSTARD
http://blog.responsivenews.co.uk/post/18948466399/cutting-the-mustard/
Cutting the Mustard
Friday, 12 April 13
Slide 59
Slide 59 text
if (isModernBrowser()) {
var s = document.createElement('script');
s.src = "app.js";
document.head.appendChild(s);
}
JAVASCRIPT LOADING
Friday, 12 April 13
Slide 60
Slide 60 text
JAVASCRIPT LOADING
var isModernBrowser = function() {
return (
‘querySelector’ in document &&
‘addEventListener’ in window &&
‘localStorage’ in window
);
};
Friday, 12 April 13