Jump to content

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
https://forums.phpfreaks.com/topic/306630-bootstrap-replacing-div-html/
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. :)

Edited by dalecosp
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.