Open modal across the screen and not inside the iframe

0
Hello, I have an iframe, and inside it has a modal using semantic, I want to know how and if it is possible to open this modal on the whole screen, and not inside the iframe itself, I already researched and found nothing, just know that with link is used target="_parent" I'm calling the modal like this:

$('.button').on('click', function(){
    $('#modal5.modal').modal('show');
});
<button data-modal="modal5" id="call-modal-5" class="ui secondary button">teste</button>

<div class="ui basic modal" id="modal5">
  <div class="ui icon header">
    <i class="archive icon"></i>
    Ola
  </div>
  <div class="content">
    <p>mensagem para teste</p>
  </div>
 
</div>
    
asked by anonymous 15.09.2017 / 16:05

0 answers