$(document).ready(function() { //TABLET CSS var body_class = $("body").attr('class').split(' '); function isTouchDevice(){ return (typeof(window.ontouchstart) != 'undefined') ? true : false; } if(isTouchDevice() == true){ var css = document.createElement('link'); css.type = "text/css"; css.href = "/css/tablet/"+body_class[0]+"-style.css"; css.rel = "stylesheet"; var s = document.getElementsByTagName('link')[4]; s.parentNode.insertBefore(css, s); } });