Using JQuery UI, I would like to set the html content of the currently selected tab, without knowing any id/title in advance. What is the best method for doing so? Thanks!

link|improve this question

3  
what does ur code look like?... – Neal Jul 5 '11 at 17:45
1  
What have you tried so far? Is there any code? If you haven't, try it yourself first, then come here asking questions if you get stuck, and, do provide some sample code. – Sayem Ahmed Jul 5 '11 at 17:49
feedback

1 Answer

up vote 3 down vote accepted

Just use a css selector:

$('.ui-tabs-panel').not('.ui-tabs-hide').html('Content.');

link|improve this answer
Thanks! That's exactly what I was looking for. – MuffinMan Jul 5 '11 at 18:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.