I have a bootstrap toggle link which will open a full screen modal windows on left click which will display all the information.
<a data-toggle="modal" data-backdrop="static" href='#modal-add-contact' class='btn'>View Info</a>
However, sometimes when user go through the table list on the page with multiple View Info links, they tend to right click and open to new tab, or right click and open to new window.
So it end up displaying the table list of info with the View Info link instead of the modal window.
How can I let the new tab window load the Modal on default base on the link clicked?