Hi Im having dificulty of controlling the display inside my tab let say I have two tabs A and B, what I have on tab A also shows on tab B although I used close tags at the end? Can anyone take a look what Im missing?
Code:
echo '
</table>' . ( $useTabs ? '
</div>' : '
</fieldset>' ) . '
<!-- REPEATING INFO -->';
if ( $DISABLE_RECAP_FIELD != 'Y' ) {
echo ( $useTabs ? '
<a name="tabrecap"></a>
<div id="tabscontent_recap">' : '
<fieldset>
<legend>' . translate ( 'Recap' ) . '</legend>' ) . '
<table border="0" cellspacing="0" cellpadding="3" summary="">
<tr>
<td class="tooltip" title="' . tooltip ( 'repeat-type-help' )
. '"><label for="rpttype">' . translate ( 'Type' ) . ':</label></td>
</td>
</tr>
</table>' . ( $useTabs ? '
</div> <!-- End tabscontent_recap -->' : '
</fieldset>' );
}
Comment