I have multiple tabs initialised through single statement like below.
$("div.scrollable").scrollable({
vertical:true,
size: 3 ,
onSeek: function(event, i) {
//different param to be passed based on which scrollable it is called for
somefunc(param);
}
);
Can it be done? Can I get the div id of the scrollable for which onSeek is called?
$("div.scrollable").scrollable({
vertical:true,
size: 3 ,
onSeek: function(event, i) {
//different param to be passed based on which scrollable it is called for
somefunc(param);
}
);
Can it be done? Can I get the div id of the scrollable for which onSeek is called?