2016-07-14 27 views

Antwort

0

Innerhalb Ihres onclick Handler nur:

document.getElementById("iframe_id").contentWindow.location.reload(); 

oder

document.getElementById("iframe_id").src = document.getElementById("iframe_id").src 
0

versuchen Sie dieses:

onClick='document.getElementById("ifr").src="add_dossier.php";' 

oder

$(function(){ 
    $('#button').click(function(){ 
     if(!$('#iframe').length) { 
       $('#iframeHolder').html('<iframe id="iframe" src="http://google.com" width="700" height="450"></iframe>'); 
     } 
    }); 
}); 
Verwandte Themen