I would like to reload an using JavaScript. The best way I found until now was set the iframe’s src attribute to itself, but this is
src
If using jQuery, this seems to work:
$('#your_iframe').attr('src', $('#your_iframe').attr('src'));
I hope it's not too ugly for stackoverflow.