tags:

views:

61

answers:

1

I having Trouble in Dividing the HTML frames, I have using following Fields in HTML

<table  width=900 border="1" cellspacing="10">
  <tr>
    <td width="500" height="170">section1 </td>
    <td width="400" rowspan=2> section2</td> 
  </tr>
  <tr>  
    <td width="500" height="400" valign="left">
      <div id="response">
      </div>
    </td>
  </tr>
</table>

Its Creating a Table But Problem is response element, It is dynamically loaded. When it loads the sizing of section1 and section2 also changes. Will anybody say alter method dividing variable size frames, which means changing content in section1 should not affect the section 2 and similarly #response element change should not affect the sizing of section1, I hope Any new mnthods to solve these kind of scenario?

+2  A: 

In most browsers, tables and other elements will incrementally load so people on slower connections don't have to wait 5 minutes before they see something.

Why does it matter if the table cells change size? You could assign a width/height to the 'response' division - that should help with it drastically changing size when the content is load.

Other than that suggestion, I'm afraid I can't help you any further. Can you show up an example or explain in greater detail what you want to accomplish?

Nick Presta