«
»

2015, jquery

Recargar Iframe con jquery

06.23.15 | Comment?

Alberto Suárez Pérez
//RECARGAR IFRAME, ID O CLASE
$('#iframe')[0].contentWindow.location.reload(true);
 
//RECARGAR TODOS LOS IFRAME 
$('iframe').each(function() {
  this.contentWindow.location.reload(true);
});

//RECARGAR TODOS LOS IFRAME
$('iframe').attr('src', $('iframe').attr('src'));

Comments are closed.


«
»