Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

bootstrap modal is coming up properly but not showing the content in it properly?

I am designing a website where i have put the modal for signup that when the user click on signup button the modal will came up but here in my website modal is working properly but content in it is not clickable please help me out.Here is my coding.

<li><a href="#show" id="showup">signup</a></li>
                    <div class="modal hide fade" id="show">
                        <div class="modal-header">
                            <button class="close" data-dismiss="modal">&times;</button>
                            <h1>Tittle</h1>
                        </div>
                        <div class="modal-body">
                                <p>The modal Body</p>
                        </div>
                        <div class="modal-footer">
                                <a href="" class="btn">Close</a>
                        </div>    
                     </div>

And the java script i have written for it is here.

<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="js/bootstrap.js"></script>
 <script type="text/javascript">
 $("#showup").click(function(){
    $("#show").modal();
    });
 </script>

The screenshots of modal will be helpful for understanding me. The modal appers like that

like image 329
Vicky Avatar asked Nov 11 '22 14:11

Vicky


1 Answers

These are good login modal example, you can see them to see how they were written :

  • Modal with tabbed content
  • Login form in a modal

use anyone of them the normal way you put your modal please see this see this link for more explanation: modal

i hope they will help you.

like image 98
AhmedBinNasser Avatar answered Nov 14 '22 23:11

AhmedBinNasser