everything. I am using bootstrap v2.1.1 (the newest version currently). I need a hint in my modal dialog.
<!DOCTYPE html> <html lang="zh-CN"> <head> <title>Bootstrap v2.1.1</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" /> <link type="text/css" rel="stylesheet" href="css/bootstrap-responsive.min.css"/> <script type="text/javascript" src="js/jquery-1.8.2.min.js"></script> <script type="text/javascript" src="js/bootstrap.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $("a[rel='tooltip']").tooltip({'placement': 'right', 'z-index': '3000'}); }); </script> </head> <body> <div class="modal modal-open"> <form class="modal-form form-horizontal"> <div class="modal-header"> <h3>Login</h3> </div> <div class="modal-body"> <a href="#" rel="tooltip" title="This is a link.">A link</a> </div> <div class="modal-footer"> <button type="submit" class="btn btn-primary">Login</button> <button type="reset" class="btn">Reset</button> </div> </form> </div> </body>
but the code does NOT work. The latest bootstrap version shows that the modal has a z-index of 1050.
and in bootstrap.min.css
.modal-open .modal .tooltip{z-index:2080;}
This may not be a z-index problem, I think.
Can anybody help? thanks a lot.
source share