How Do I get a paragraph from website and display in Iframe?
I am trying to get the first paragraph from the website below and display
it in iframe. Can you correct my code?
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
var iframe = document.getElementById('iframe');
$(iframe).contents().find("<p>").html();
</script>
</head>
<body>
<iframe name="iframe" id="iframe"
src="https://www.baronaonlinepoker.com/blog" scrolling="yes" width="180"
height="135">
</iframe>
</body>
</html>
No comments:
Post a Comment