reload iframe on button click code example
Example 1: onclick reload an iframe
document.getElementById('iframeID').contentWindow.location.reload();
Example 2: open iframe on button click
function postYourAdd () {
var iframe = $("#forPostyouradd");
iframe.attr("src", iframe.data("src"));
}