JQuery Reload Iframe
$('.refrech-iframe').click(function(){
$(".myiframe").attr("src", function(index, attr){
return attr;
});
});
AlarmClockMan