开发者

Multiple jQuery scripts don't work at a same page

开发者 https://www.devze.com 2023-03-29 02:57 出处:网络
I\'m a php developer, but sometimes I use jQuery (ready made codes). This time I\'m having a problem while running multiple jquery functions. If I remove any one of the jQuery functions (total code fe

I'm a php developer, but sometimes I use jQuery (ready made codes). This time I'm having a problem while running multiple jquery functions. If I remove any one of the jQuery functions (total code feature) then other one works fine, but I need both of these.

http://www.kidsartvalley.com/kidsartvalley/account-setting-galler开发者_Go百科y2.html

See the address above for an example of what I'm talking about. Kindly don't pay attention to the design of the page. That's a different issue, but will be resolved.

The one jQuery function is "album viewer" and the other one is "POST YOUR PHOTOS" at the right corner of page above the heading of gallery.


It's not the scripts, it's because you're loading JQuery multiple times:

<script language="javascript" type="text/javascript" src="js/jquery.js"></script> 
...
<script type="text/javascript" src="http://www.kidsartvalley.com/shinetime/shinetime/js/jquery-1.4.2.min.js"></script>

Swap those with this:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script>


Since you didn't give us any information about what jQuery code in your page is causing a problem, all anyone here can do is look at the errors in your page and tell you to fix them. If you want more specific advice, then be more specific about what jQuery code you want help with.

In your page, I see an error on this line and I think it's because there's no object with an id of "lofslidecontent45" on the page or be3cause that object doesn't have a method "lofJSidernews":

jQuery(document).ready( function(){    
        jQuery('#lofslidecontent45').lofJSidernews( { interval:6000,
                                                easing:'easeInOutQuad',
                                                duration:1200,
                                                auto:true } );                      
    });
0

精彩评论

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