yonilcom
01-03-2011, 04:21 PM
hey.
i'm not a code expert or anything but i here's what i'm trying to do:
i set up this blog using weebly.com: http://noamagger.weebly.com and i wanna add color animations to the post titles and some buttons and i can't seem to get it working.
here's what i did:
added this to the html head:
<script type="text/javascript" src="http://www.jonathanlax.com/nmblog/js/jquery-1.3.2.js"></script>
<script type="text/javascript" src="http://www.jonathanlax.com/nmblog/js/jquery.color.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#blog-read-more-link").hover(function() {
$(this).stop().animate({ backgroundColor: "#53b9df"}, 800);
},function() {
$(this).stop().animate({ backgroundColor: "#e7e7e7" }, 800);
});
});
</script>
tried making the "read more" button's background to change colors on hover.
it simply does not work for me.
firebug gives me this:
$("#blog-read-more-link") is null
$("#blog-read-more-link").hover(function() {
i've tried so many things already and nothing seems to work...
please help!
thanx
i'm not a code expert or anything but i here's what i'm trying to do:
i set up this blog using weebly.com: http://noamagger.weebly.com and i wanna add color animations to the post titles and some buttons and i can't seem to get it working.
here's what i did:
added this to the html head:
<script type="text/javascript" src="http://www.jonathanlax.com/nmblog/js/jquery-1.3.2.js"></script>
<script type="text/javascript" src="http://www.jonathanlax.com/nmblog/js/jquery.color.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#blog-read-more-link").hover(function() {
$(this).stop().animate({ backgroundColor: "#53b9df"}, 800);
},function() {
$(this).stop().animate({ backgroundColor: "#e7e7e7" }, 800);
});
});
</script>
tried making the "read more" button's background to change colors on hover.
it simply does not work for me.
firebug gives me this:
$("#blog-read-more-link") is null
$("#blog-read-more-link").hover(function() {
i've tried so many things already and nothing seems to work...
please help!
thanx