I hang the change(event) on one of the elements. When this event arrives, I want to update the contents of the tab. To create tabs I use jQuery. If the handler just write

 $(containerId).tabs("select", index); 

then nothing happens. How to update the data in the tab?

Also, in the select handler, the correct URL of the tab is formed.

    1 answer 1

    To update the tab, do the following:

     $(containerId).tabs("load", index); 

    I think the whole hitch here is in the functionality of the select event handler. Take it all to a separate form. Before calling load call the select handler.