Click here to Skip to main content
15,896,557 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I used bootstrap modal popup in my jsp. The problem is that it automatically disables header links ie. the menu items. When i click on the modal popup button then the header links start working automatically. What configurations do i need to do??
Thanks in advance :)
Posted
Updated 14-Jul-14 20:27pm
v2

1 solution

the solution was quite simple

adding style="display: none;" to the
<div class="modal fade"> </div>
made it working ie.
<div class="modal fade" id="getLegalOpinion" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display: none;"></div>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900