开发者

jquery #hash automatic function onload

开发者 https://www.devze.com 2023-01-18 10:37 出处:网络
Hi I\'m trying to recreate the effect like on SO where you click a comme开发者_如何学Pythonnt, and the page loads, and the given comments background fades out.

Hi I'm trying to recreate the effect like on SO where you click a comme开发者_如何学Pythonnt, and the page loads, and the given comments background fades out.

so far I have

    var theHash = window.location.hash;
    $(theHash).hover(function() {
    $(this).stop().animate({ backgroundColor: "#a7bf51"}, 800);
    },function() {
    $(this).stop().animate({ backgroundColor: "#ffffff" }, 800);
    });

which works fine on a hover, but i would like this to be done automatically when the page is ready.

is there an event for this, rather than using "hover"? thanks


think i was over complicating things, this works fine for me -

$(document).ready(function(){
    var theHash = window.location.hash;
    theHash=theHash.substr(1);  
    $("#f"+theHash).css('backgroundColor',"#E47527");
    $("#f"+theHash).animate({backgroundColor: "#ffefe3" }, 2000);
});

thanks anyways !


Is this what you're looking for?

$(document).ready(function(){
....
});
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号