Is it possible to change a jquery function's parameter with another jquery function?
What I have is this (stripped down):
$(".jThumbnailScroller").thumbnailScroller({
scrollerType: "hoverPrecise"
});
And I'm wondering if I can change scrollerType: "hoverPrecise" to "clickButtons" via another function that gets called after detecting mobile?
Thanks!