I was curious if there was anything for say PHP or Python that was able to generate jQuery components by using calls to a library.
So something like this:
import jQueryLib
Tabs tabContainer = new Tabs();
Tab page1, page2, page3;
page1.content = "bleh";
...
tabContainer.children.add(page1);
tabContainer.Render();
Does anyone know of any libraries out there that do this?