jquery - Moving modal to body leaves table behind -


i using bootstrap django project , have modals inside templatetags. use code below move modals document body. however, table inside modal-body remains modal while modal moved document body. experienced before?

<script>     $(document).ready(function() {         $(document.body).append($('.modal').detach());     }); </script> 

before move modal:

<div class="modal">     <div class="modal-dialog">         <div class="modal-content">             <div class="modal-header"></div>             <div class="modal-body">                 <table> ... </table>             </div>         </div>     </div> </div> 

after i've moved modal:

<table> ... </table>  <div class="modal">     <div class="modal-dialog">         <div class="modal-content">             <div class="modal-header"></div>             <div class="modal-body">             </div>         </div>     </div> </div> 


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -