Search This Blog

Tuesday 5 August 2014

jQuery Reload/Refresh iFrame

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery Reload iframe</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script type="text/javascript">
$(function() {
$('#btnRefresh').click(function() {
$('#testframe').attr('src', $('#testframe').attr('src'));
});
});
</script>
</head>
<body>
<div>
<input type="submit" name="go" id="btnRefresh" value="Refresh Iframe"/><br />
<iframe id="testframe" src="http://www.aspdotnet-suresh.com" width="350px" height="350px"></iframe>
</div>
</body>
</html>

No comments:

Post a Comment