I have this html:
<div class="portlet-header">
Company Information ... <button> some button here </button>
</div>
<div class="portlet-content">
<div class="content_regular">
<table style=" width:100%; height:100%;">
...content
</table>
</div>
</div>
how do i get the hmtl after i click the button at the portlet-header part, in this case, the table tag?
I have this jquery code to get the text on the header: $(this).parent().text();
but got nowhere in trying to retrieve the hmtl under the "content_regular" class as shown above.
Hope your wisdom can help me with this. i know this very easy to others but i am not familiar with jquery.
thanks