开发者

jQuery Slider Uncaught TypeError: Object #<Object> has no method 'data'

开发者 https://www.devze.com 2023-04-12 09:20 出处:网络
I am getting t开发者_如何学编程he following error HERE The error reads: Uncaught TypeError: Object # has no method \'data\'

I am getting t开发者_如何学编程he following error HERE

The error reads: Uncaught TypeError: Object # has no method 'data'

I cannot figure out for the life of me where this error is originating from!

If anyone has even the slightest clue, please let me know!

Thank you,

Evan


It's originating from "jquery.nivo.slider.pack.js" and more precisely is complaining about element.data is not a function at line 67 (Firebug is a great tool for such debugging :-) ). I am not entirely sure, but it could be because of the following code in your html:

<script type="text/javascript">
$(window).load(function() {
    $('#slider').nivoSlider();
});
</script>

$(window).load will fire as soon as the window is loaded at which point it could be that the slider div is not present in the DOM. So, try changing this to:

<script type="text/javascript">
$(document).ready(function() {
    $('#slider').nivoSlider();
});
</script>

This will ensure that the DOM has been painted and available for the plugin to work on. Also, it looks like the plugin expects an 'element' argument, whereas you are passing none, which could be the reason for element.data to be undefined. For this you can try:

$('#slider').nivoSlider($(this));

Hope one of them works for you.


Incase anyone is stuck with the same thing, live() is deprecated replaced with on(), you need to use a newer version of nivo or an older version of jquery, jquery-1.8.0 works.

0

精彩评论

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

关注公众号