I'm currently working with jQuery-Tabs to simulate a multi-window inputmask. Thus the tabs are variable and users are allowed to add and remove them and the content in those tabs is always the same input-form.
Now I need to select via jQuery some of those fields. The problem is, that I would need to find out which tab is currently selected and use this info in the selector.
Is there a way to identify the currently selected Tab and use this info in a jQuery selector so I can manipulate the right fields?
Iterating through the tabs and checking properties like 'hidden' is not really an option, because it slows down the application significantly.