By using this, all iframe on the page will reload. Just replace the #refreshall to your button ID or class
$(function(){
$('#refeshall').click(function() {
$("iframe").each(function() {
var src= $(this).attr('src');
$(this).attr('src',src);
});
});
});