add css on load jquery code example
Example 1: jquery modify style attribute
$('#yourElement').css('display', 'none');
Example 2: add css file through jquery
$('head').append('<link rel="stylesheet" href="style2.css" type="text/css" />');
$('#yourElement').css('display', 'none');
$('head').append('<link rel="stylesheet" href="style2.css" type="text/css" />');