jquery - Bootstrap denies js "swap css file" script? -
i have tested script, , seems work fine until add bootstrap site.
the intention animate header. on bootstrap have positioned first entry after <body>
, before <nav>
, moved around couple times trying different stuff. i'm pretty newbie, can't think of excluded in bootstrap situation.
fyi i'm loading jquery slider anyways, it's not included action. doesn't seem jsfiddle circumstance, since involves 2 css files, right?
<script src="js/jquery-1.11.3.min.js"></script> <script src="js/bootstrap.js"></script> <script> $(window).scroll(function() { var scroll = $(window).scrolltop(); if (scroll >= 50) { $('link[href="head1.css"]').attr('href','head2.css'); } else { $('link[href="head2.css"]').attr('href','head1.css'); } }); </script>
Comments
Post a Comment