JQ特效在IE9以下无法接受

我写了个特效在IE9一下接收不到 请问一下有什么方法可以判断那段代码在IE里面能接受的到呀!
function initHoverApply() {
$(".titler_one ul li").hover(function () {
$(this).find(".rsp").stop().fadeTo(500, 0.5);
$(this).find(".rsp_one").css("display", "block");
$(this).find(".rsp_one").stop().animate({ top: '0' }, { duration: 500 });
}, function () {
$(this).find(".rsp").stop().fadeTo(500, 0);
//$(this).find(".rsp_one").stop().animate({ top: '-180' }, { duration: "fast" });
$(this).find(".rsp_one").animate({ top: '53' }, { duration: 0 });
$(this).find(".rsp_one").css("display", "none");
});
}