I have used the code for my modal straight from the Bootstrap example, and have included only the bootstrap.js (and not bootstrap-modal.js). However, my modal is appearing u
I have a lighter and better solution..
It could be easily solve through some additional CSS styles..
hide the class .modal-backdrop
(auto generated from Bootstrap.js)
.modal-backdrop
{
display:none;
visibility:hidden;
position:relative
}
set the background of .modal
to a translucent black backdrop image.
.modal
{
background:url("http://bin.smwcentral.net/u/11361/BlackTransparentBackground.png")
// translucent image from google images
z-index:1100;
}
This will works best if you have a requirement that needs the modal to be inside an element and not near the
tag..