This is due to the path you've specified for the ajax content file inside expstickybar.js:
Code:
var mystickybar=new expstickybar({
id: "stickybar", //id of sticky bar DIV
position:'bottom', //'top' or 'bottom'
revealtype:'mouseover', //'mouseover' or 'manual'
peekamount:70, //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:400 //duration of animation (in millisecs)
})
Instead of a relative URL (as is the case here) which breaks down if the page requesting it is not in your root directory, you should use an absolute URL to it instead, ie:
Code:
var mystickybar=new expstickybar({
id: "stickybar", //id of sticky bar DIV
position:'bottom', //'top' or 'bottom'
revealtype:'mouseover', //'mouseover' or 'manual'
peekamount:70, //number of pixels to reveal when sticky bar is closed
externalcontent:'http://dev.pushthepixel.ca/stickybarcontent.htm', //path to sticky bar content file on your server, or "" if content is defined inline on the page
speed:400 //duration of animation (in millisecs)
})
Bookmarks