Jump to content

bootstrap; replacing div html


fatkatie

Recommended Posts

I have a target div element for a callback,

<div id='placehtmlhere'></div>

The first call fills that empty div element

         document.getElementById("placehtmlhere").innerHTML=xmlHttp.responseText;

Later, a second call executes, but this time the layout changes.  If I load the first call parameter (getting the very first

result set again) it changes too.

 

I there something going on in the bootstrap grid I don't know about?

<div class='container'>
   <div class='row'>
      <div class='col-md-6'>
         <table border='0' cellpadding='0' cellspacing='1'>
            <tbody>
               <tr>
               <td>
                  <div id='placehtmlhere'> </div>
               </td>
               </tr>
            </tbody>
         </table>
      </div>   <!-- end col 6 -->
...

Do I need to tickle it... let it know the HTML is changing?  If nothing is apparent, it must be just some bad css coding I guess.  Thanks for any suggestions.

 

Link to comment
Share on other sites

  • 2 weeks later...

You css code is right. but check your script code of your php. Check this code again : 

  document.getElementById("placehtmlhere").innerHTML=xmlHttp.responseText;

That's JavaScript, and assuming that the browser encounters the proper <script> tag, and 'xmlHttp' is an object with a property named 'responseText', and there are no previous execution errors in the page's JavaScript, it should do exactly what it says it will do. :)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.