admin管理员组文章数量:1345087
This is the error i'm getting from Firebug using jQuery in a function outside (and before) the $(document).ready
because it is used in a inline onclick event:
$("#_box").fadeIn(500).delay is not a function
$('#_box').fadeIn(500).delay(3000).fadeOut(500);
and this is the function:
function throwBox(message) {
$('#_box').html(message);
$('#_box').fadeIn(500).delay(3000).fadeOut(500);
}
Isn't delay()
a jQuery function?
What happens in my browser is that the fadeIn()
function is called nicely and the box appear, but then stands there and doesn't disappear.
This is the error i'm getting from Firebug using jQuery in a function outside (and before) the $(document).ready
because it is used in a inline onclick event:
$("#_box").fadeIn(500).delay is not a function
$('#_box').fadeIn(500).delay(3000).fadeOut(500);
and this is the function:
function throwBox(message) {
$('#_box').html(message);
$('#_box').fadeIn(500).delay(3000).fadeOut(500);
}
Isn't delay()
a jQuery function?
What happens in my browser is that the fadeIn()
function is called nicely and the box appear, but then stands there and doesn't disappear.
- 2 Which version of jQuery? – Dogbert Commented Mar 17, 2011 at 18:12
-
4
What version of jQuery are you using?..
delay()
was added in 1.4 api.jquery./delay – Quintin Robinson Commented Mar 17, 2011 at 18:12
2 Answers
Reset to default 6I loaded an old copy of jQuery (1.3) instead of the new one while delay()
was added in version 1.4 as suggested by Quintin Robinson.
If you're stuck using jQuery 1.3 (maybe you're working with Drupal 6) a work-around is to animate a property that's constant.
For example, replace:
$("#id").delay(1000).fadeOut();
With:
$("#id").animate({top: 0}, 1000).fadeOut();
本文标签: javascriptdelay is not a function (jQuery 13)Stack Overflow
版权声明:本文标题:javascript - `delay` is not a function (jQuery 1.3) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743772534a2536381.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论