I'm using this to display my modal.
<script>
Mousetrap.bind('j e f f r e y enter', function() {
$('#myModal').modal('show')
});
</script>
Normally a button is used.
<a data-toggle="modal" class="btn btn-info" href="remote.html" data-target="#myModal">Click me !</a>
Is there any way to get the modal from another html page and call it using javascript?