Trying to make a form wizard with jquery tabs.
Is it possible to have each step of the form in a separate view, then load each via jquery tabs' ajax option? When I ajax load just the partial (just the form), it has no way to access the js, css etc. (as there are is no 'header' for the partial file), and it doesn't seem to inherit from the parent page.
As a workaround I have all the forms on one page, divided into tabs with divs. This does the job, but with js turned off it doesn't make much sense (though the app relies on js and will be used in-house only with js enabled browsers, so maybe this is not an issue).
I'm using CodeIgniter, but I guess the question is valid for any MVC framework.