Click here to Skip to main content
15,888,351 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I'm having five columns in my table i need to split this into one column in one table and four columns in another table.
i want to divide the table into two.
Posted
Comments
[no name] 4-Jun-12 2:41am    
show ur html table structure

XML
<table>
<tr>
<td>
<table id="First Tabel">
<tr>
<td>1Coloumn</td>
</tr>
</table>
<table id="Second Tabel">
<tr>
<td>2Coloumn</td>
<td>3Coloumn</td>
<td>4Coloumn</td>
<td>5Coloumn</td></tr>
</table>
</td>
</tr>
</table>
 
Share this answer
 
Comments
Agustee 4-Jun-12 2:59am    
thanq
[no name] 4-Jun-12 3:02am    
Accept solution Agustee
XML
<table>
    <tr>
    <td>table1</td><td colspan="4">table2</td>
    </tr>

    </table>
 
Share this answer
 
Comments
Agustee 4-Jun-12 2:59am    
thanq

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900