How to Add jQuery for Blogger Navbar



Hi, bloggers! antecedently, I've announce concerning the way to take away Blogger Navbar. Now, i'll announce concerning the way to Add jQuery for Blogger Navbar. By adding some jQuery for your Blogger Navbar, your Blogger Navbar can look enticing. The navbar are clear, however if you place your pointer on that, the navbar are come back. For the main points, you'll be able to see the. Now, if you would like to do the way to Add jQuery for Blogger Navbar, simply follow the steps below.


1. Log in to your blogger account
2. Go to Design --> Edit HTML
3. Copy the code below, and paste above </head>

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'/>
<script type='text/javascript'>
$(document).ready(function(){
$("#navbar").fadeTo("slow",
0.1
);
$("#navbar").hover(function(){
$(this).fadeTo("slow",
1.0
);
},function(){
$(this).fadeTo("slow",
0.1
);
});
});
</script>

4. And click SAVE TEMPLATE

Post a Comment