Results 1 to 3 of 3

Thread: Expandable sticky bar - fetching ajax problem

  1. #1
    Join Date
    Jul 2012
    Posts
    4
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Exclamation Expandable sticky bar - fetching ajax problem

    1) Script Title: Expandable Sticky Bar

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

    3) Describe problem:

    hello there,

    link:
    http://www.barbarakampel.at/test/index.html

    bugreport on all browsers (ff, safari, chrome):
    "Error fetching Ajax content.<br />Server Response"

    since the script worked offline (except on ff - same bug report as above) i was surprised that it didn't work in either browser when put online...
    i read through almost every comments posted concerning this script but am completely stuck now.

    thanks in advance.
    bk

    ps: tried script on another page (easier coding). same result...

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    The path you've set to stickybarcontent.htm on your server is currently broken inside the .js file:

    Code:
    var mystickybar=new expstickybar({
    	id: "stickybar", //id of sticky bar DIV
    	position:'bottom', //'top' or 'bottom'
    	revealtype:'mouseover', //'mouseover' or 'manual'
    	peekamount:30, //number of pixels to reveal when sticky bar is closed
    	externalcontent:'stickybarcontent.htm', //path to sticky bar content file on your server, or "" if content is defined inline on the page
    	speed:200 //duration of animation (in millisecs)
    })
    The above translates to http://www.barbarakampel.at/test/stickybarcontent.htm , which as you can see does not exist.
    DD Admin

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

    bakampel (08-17-2012)

  4. #3
    Join Date
    Jul 2012
    Posts
    4
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    thank you.
    problem solved.
    bk

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
  •