Sorry for asking such a newbie question, I know it makes a few of you here angry. But I think learning the syntax is the hardest part so don't flame me too badly.
Right, I'm using the Tabs widget from the jQuery UI. I'm stuck with setting the options for this. This is how it stands...
<script type="text/javascript">
$(function() {
$("#forumswitch").tabs({
event: 'mouseover',
});
});
</script>
I'm using Ajax with this however I want it to be cached instead of requesting new data each time a tab is changed. (http://docs.jquery.com/UI/Tabs#option-cache)
How would I add this to the settings? I know it's done with arrays but I seem to mess it up every time I try.