Skip to content

Instantly share code, notes, and snippets.

@fedmich
Created February 12, 2014 00:23
Show Gist options
  • Save fedmich/8947380 to your computer and use it in GitHub Desktop.
Save fedmich/8947380 to your computer and use it in GitHub Desktop.
Update_iframe
$(document).ready(function () {
var oFra = $("#iframe_id");
$("#button3").click(function () {
oFra.attr("scrolling", "yes");
oFra.attr("src", oFra.attr("src"));
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment