Guest User

Untitled

a guest
Jul 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $(document).ready(function() {
  2. // html5 feature support
  3. for (var k in html5)
  4. console.log(k, '...', html5[k]);
  5. });
  6.  
  7. (function(window, document, navigator, undefined) {
  8. var html5 = {
  9. appcache: !!window.applicationCache,
  10. geolocate: !!navigator.geolocation,
  11. workers: !!window.Worker,
  12. localstore: ('localStorage' in window) && (window['localStorage'] !== null),
  13. };
  14. // expose
  15. window.html5 = html5;
  16. })(this, document, navigator);
Add Comment
Please, Sign In to add comment