Skip to content

Instantly share code, notes, and snippets.

@yrgoldteeth
Created July 8, 2009 21:11
Show Gist options
  • Save yrgoldteeth/143193 to your computer and use it in GitHub Desktop.
Save yrgoldteeth/143193 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
var $tabs = $('#tabs').tabs();
$('.next').click(function() { var $tabs = $('#tabs').tabs();
var selected = $tabs.tabs('option', 'selected');
$tabs.tabs('select', selected + 1); return false;
})
$('.previous').click(function() { var $tabs = $('#tabs').tabs();
var selected = $tabs.tabs('option', 'selected');
$tabs.tabs('select', selected - 1);
return false;
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment