I'm constructing a single page KnockoutJs app with multi-tab functionality.
Thus far, I have tried out jQuery UI's tab functionality with the basic idea I had in mind.
Here's a my example: jsfiddle
using this jQuery UI function:
$(document).ready(function() {
$("#tabs").tabs();
});
How would you build out tabs in a Knockoutjs app? Are there best practices?
Does this seem like a good direction? or are there any suggestions on where to look?