Results 1 to 3 of 3

Thread: Expandable Sticky bar conflicting with fancybox java

  1. #1
    Join Date
    Mar 2012
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Expandable Sticky bar conflicting with fancybox java

    1) Script Title: Expandable Sticky Bar

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici.../stickybar.htm

    3) Describe problem: I am trying to add a footer using the expandable sticky bar script as solution for my one page... I am having issues with it conflicting with the fancybox java. Any help would be great!http://kglyphics.com

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    There could also be other problems but, this:

    Code:
    	<!-- Add jQuery library --><script  src="/js/expstickybar.js"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
    Should be:

    Code:
    	<!-- Add jQuery library -->
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
    <script  src="/js/expstickybar.js"></script>
    But now fancybox doesn't work. To fix that:

    Using a text only editor like NotePad, open up the expstickybar.js file and comment out the jQuery.noConflict() statement as shown:

    Code:
    /*Expandable Sticky Bar (Initial: Nov 1st, 2010)
    * This notice must stay intact for usage 
    * Author: Dynamic Drive at http://www.dynamicdrive.com/
    * Visit http://www.dynamicdrive.com/ for full source code
    */
    
    //jQuery.noConflict()
    
    function expstickybar(usersetting){
    	var setting=jQuery.extend({positi . . .
    Save and use that version.

    The browser cache may need to be cleared and/or the page refreshed to see changes.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Mar 2012
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks John! When I get the chance I'll try it.

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
  •