im using fancybox from:
http://fancyapps.com/fancybox/
And the scroll pane is not working correctly and just wondered if im doing something wrong below with the code. its added the pane in but not the scrollbar its self so im asusming needs to fire after fancybox but might be wrong with what i have done below
var scrollpane;
$(document).ready(function() {
// start up the overlay
$("a#addtatic-overlay").fancybox({
helpers: {
overlay : {
opacity: 0.35
}
},
'afterLoad' : (function(){
//custom scroll bar
scrollpane = $('.scroll-pane').jScrollPane();
}),
'afterClose' : (function(){
scrollpane.destroy();
})
});
// Slider
$("#slidecontainer").muslider({
"animationtype": "horizontal",
"animationduration": 600,
"height": 500,
"width": 835
});
// Forms
$("input, textarea, select").uniform();
});