everyone. I created my page and inserted inside another page using IFrame. Now I'm trying to get whole text of that inserted page using pure javascript or jquery. Here's what I have now, but it doesn't work...
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="jquery-1.5.1.js"></script>
<script type="text/javascript">
function getFrameContents(){
return $("#myframe").contents().find('body');
}
</script>
</head>
<form>
<input type="button" value="CodingForums" onClick="window.alert(getFrameContents())" />
</form>
<iframe id='myframe' src="http://www.fxstreet.com/rates-charts/currency-rates/" width="100%" height="300">
<p>Your browser does not support iframes.</p>
</iframe>
</html>
I've read also that there is some policy about accessing pages from different server. How can I do it properly?