Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6741365
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:42:57+00:00 2026-05-26T11:42:57+00:00

So I have read other peoples posts regarding this issue and still cannot get

  • 0

So I have read other peoples posts regarding this issue and still cannot get mine to work no matter how I organize it, so anyway.

I have essentially a gallery with a slider and a div in which I want to replace content, at the moment only the slider works. Here is what I have in my head

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.13.custom.min.js"></script>
<script type="text/javascript" src="js/jquery.thumbnailScroller.js"></script>

So the first on is obviously my jquery call and then the next to are for the slider that I did not create but had found online.

Then in my page I have the following code to call this up,

<div id="biocontent">
   Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod velit nec sem iaculis vitae laoreet sem convallis. Donec sed lorem ante, quis fermentum nisl. Nullam adipiscing fermentum rhoncus. Aenean dui lectus, condimentum sed aliquet a, euismod vitae dui. Donec tempus faucibus tortor, feugiat fringilla nibh posuere eu. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nulla a elit ut quam laoreet venenatis. Proin pharetra semper interdum. Phasellus porttitor imperdiet libero. Aenean ultricies rhoncus metus eget semper.
<br /><br />
Morbi rutrum ornare tortor, quis aliquam felis commodo et. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed justo mauris, congue nec porttitor non, vehicula sed nisi. Praesent ultrices euismod massa, sit amet semper nisi elementum sit amet. Sed ut facilisis erat. Sed vestibulum ullamcorper magna, id euismod mauris posuere id. Aenean ac euismod mauris. Aliquam non mi ac sapien commodo adipiscing. Suspendisse nec felis a est convallis scelerisque. Mauris tempus pharetra euismod.

    </div>

    <div id="tS2" class="bioworkscroller">
        <div class="bioscollerContainer">
            <div class="bioscoller">

        <a href="testvid.html"><img src="img/thumbs/img3.jpg" /></a>
        <a href="#"><img src="img/thumbs/img4.jpg" /></a>
        <a href="#"><img src="img/thumbs/img5.jpg" /></a>


            </div>
        </div>
<a href="#" class="bioscollerPrevButton"></a>
<a href="#" class="bioscollerNextButton"></a>
    </div>

and then below that I have all my javascript for the ajax call and slider,

   (function($) { 
   $(document).ready(function(){   
$("#links a").bind("click", function(e){ 
    e.preventDefault();
    var pageLocation = $(this).attr("href");
   $.ajax({ 
    url: pageLocation, 
    success: function(data){ 
        $("#biocontent").html(data); 
    },
    dataType : "html"
     });
});
}); })(jQuery)
jQuery.noConflict(); 
(function($){
window.onload=function(){ 
$("#tS1").thumbnailScroller({ 
    scrollerType:"hoverAccelerate", 
    scrollerOrientation:"horizontal", 
    scrollEasing:"easeOutCirc", 
    scrollEasingAmount:800, 
    acceleration:4, 
    scrollSpeed:800, 
    noScrollCenterSpace:10, 
    autoScrolling:0, 
    autoScrollingSpeed:2000, 
    autoScrollingEasing:"easeInOutQuad", 
    autoScrollingDelay:500 
});
$("#tS2").thumbnailScroller({ 
    scrollerType:"clickButtons", 
    scrollerOrientation:"horizontal", 
    scrollSpeed:2, 
    scrollEasing:"easeOutCirc", 
    scrollEasingAmount:600, 
    acceleration:4, 
    scrollSpeed:800, 
    noScrollCenterSpace:10, 
    autoScrolling:0, 
    autoScrollingSpeed:2000, 
    autoScrollingEasing:"easeInOutQuad", 
    autoScrollingDelay:500 
});
$("#tS3").thumbnailScroller({ 
    scrollerType:"hoverPrecise", 
    scrollerOrientation:"vertical", 
    scrollSpeed:2, 
    scrollEasing:"easeOutCirc", 
    scrollEasingAmount:800, 
    acceleration:4, 
    scrollSpeed:800, 
    noScrollCenterSpace:10, 
    autoScrolling:0, 
    autoScrollingSpeed:2000, 
    autoScrollingEasing:"easeInOutQuad", 
    autoScrollingDelay:500 
});
 }
 })(jQuery);

I have the ajax switch working in its own file without the slider, but cannot get them both to work, I feel like this has something to do with the ‘jQuery.noConflict()’ call but cannot figure out how to get around this, when I run it in in the javascript console no errors come up.

Any help will be greatly appreciated

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T11:42:57+00:00Added an answer on May 26, 2026 at 11:42 am

    Since $(document).ready is a much better wrapper for window.onload remove this and pack both in one doc.ready.

    (function($) { 
    $(document).ready(function(){   
          $("#links a").bind("click", function(e){ 
             e.preventDefault();
             var pageLocation = $(this).attr("href");
             $.ajax({ 
                  url: pageLocation, 
                  success: function(data){ 
                  $("#biocontent").html(data); 
               },
               dataType : "html"
             });
       });
    
       $("#tS1").thumbnailScroller({ 
           scrollerType:"hoverAccelerate", 
           scrollerOrientation:"horizontal", 
           scrollEasing:"easeOutCirc", 
           scrollEasingAmount:800, 
           acceleration:4, 
           scrollSpeed:800, 
           noScrollCenterSpace:10, 
           autoScrolling:0, 
           autoScrollingSpeed:2000, 
           autoScrollingEasing:"easeInOutQuad", 
           autoScrollingDelay:500 
       });
    
       $("#tS2").thumbnailScroller({ 
           scrollerType:"clickButtons", 
           scrollerOrientation:"horizontal", 
           scrollSpeed:2, 
           scrollEasing:"easeOutCirc", 
           scrollEasingAmount:600, 
           acceleration:4, 
           scrollSpeed:800, 
           noScrollCenterSpace:10, 
           autoScrolling:0, 
           autoScrollingSpeed:2000, 
           autoScrollingEasing:"easeInOutQuad", 
           autoScrollingDelay:500 
       });
       $("#tS3").thumbnailScroller({ 
           scrollerType:"hoverPrecise", 
           scrollerOrientation:"vertical", 
           scrollSpeed:2, 
           scrollEasing:"easeOutCirc", 
           scrollEasingAmount:800, 
           acceleration:4, 
           scrollSpeed:800, 
           noScrollCenterSpace:10, 
           autoScrolling:0, 
           autoScrollingSpeed:2000, 
           autoScrollingEasing:"easeInOutQuad", 
           autoScrollingDelay:500 
       });
    
    
    }); 
    })(jQuery)
    

    I don’t see a reason to use jQuery.noConflict(), or are you using any non jQuery Scripts in your page?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have read other related question but i cant really get them to relate
I have read the other posts, e.g., vim: Executing a list of editor commands
I have read this article from High Scalability about Stack Overflow and other large
Okay guys, I have read through all the other posts and question on jQuery
I have read the other posts about the notorious _imaging C module error when
Okay, I've read a number of other posts on StackOverflow regarding multi-threading, but I
I read up someplace, that there are characters other than A-Z that have a
I have read this post about how to test private methods. I usually do
This issue only exists under IIS5.1. I have found a way of resolving the
I have read all the blog posts on digital signing and checked out GoDaddy

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.