Displaying bootstrap custom modal

Kryston

New Member
Problem Description I have two views. The first one contains a link, which when clicked, should display the second view which is my custom modal. Both files are in the same folder called school. CodefirstView.html \[code\]<html> <head>Click the link</head> <body> <div> <a data-toggle="modal" href="http://stackoverflow.com/questions/15600852/secondView.html" data-target="#secondView" >Additional Details</a> </div> </body> </html>\[/code\]secondView.html\[code\]<!-- Modal --><div id="secondView" class="modal hide fade" tabindex="-1" role="dialog" aria- labelledby="myModalLabel" aria-hidden="true"><div class="modal-header"><button type="button" class="close" data-dismiss="modal" aria-hidden="true">
 
Back
Top