Created
February 12, 2014 00:23
-
-
Save fedmich/8947380 to your computer and use it in GitHub Desktop.
Update_iframe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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