views:

30

answers:

1

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?

A: 

The only thing I can think out of my head would be codeigniter jQuery plugin, though it's seems not to be maintained any more.

azatoth