Results 1 to 3 of 3

Thread: jQuery conflict with Translucent slideshow Script

  1. #1
    Join Date
    Jan 2011
    Posts
    52
    Thanks
    10
    Thanked 0 Times in 0 Posts

    Default jQuery conflict with Translucent slideshow Script

    1) Script Title: Translucent slideshow Script

    2) Script URL (on DD): http://dynamicdrive.com/dynamicindex...ucentslide.htm

    3) Describe problem:
    I have 3 divs at the top of the page which are faded in using jQuery statements and then the Translucent slideshow in the body.

    The jquery is :
    $(document).ready(function( ){
    // setTimeout(function(){$('.leftbox').css("background-image","url(images/leftboxbg.png)").hide().fadeIn(3500)},2500);
    $('.midbox').delay(2000).fadeIn(2500);
    $('.rightbox').delay(3500).fadeIn(2500);
    });

    This is not working when Translucent slideshow Script is present.

    Site is under development and not yet hosted.

    Any help?
    Last edited by Paramasivan; 10-04-2011 at 09:09 PM.

  2. #2
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    Try changing this line of the jQuery:
    Code:
    $(document).ready(function( ){
    to
    Code:
    jQuery(document).ready(function($){
    hope that helps

  3. The Following User Says Thank You to azoomer For This Useful Post:

    Paramasivan (10-04-2011)

  4. #3
    Join Date
    Jan 2011
    Posts
    52
    Thanks
    10
    Thanked 0 Times in 0 Posts

    Default

    Thank you. It works.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •