Hi shayne, I think the issue is that some other script code expects for the tab content to be in a <div> element and you've got it on the <table>.
Also there was a mismatched end tag:
code:
<div id="ConstructTabContent">
...
</divid="ConstructTabContent">
Should be:
code:
<div id="ConstructTabContent">
...
</div>
Please try this attached version.
- Michael
|