Link to home
Start Free TrialLog in
Avatar of josefkrzysztof
josefkrzysztof

asked on

highlight words within iframe webpage

Hi,

I would like to add anm input text and an input button to find and highlight words (simple or compung) inside the iframe placed webpage.

Very grateful for any help
The code:
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Example</title>
<style type="text/css">
</style>
<script type="text/javascript">
// <![CDATA[
 
window.onload = function()
	{
	var iframe_window = window.frames["my_iframe"];
	var iframe_body_html = iframe_window.document.getElementsByTagName("body")[0].innerHTML;
	//var html = http://virtual-economy.org.replace(/me/gi,"you"); //case-insensitive
	//var html = iframe_body_html.replace(/me/g,"you");
	//html = html.replace(/ME/g,"YOU");
	document.getElementById("output").innerHTML = html;
	}
 
// ]]>
</script>
</head>
<body>
 
<iframe name="my_iframe" id="my_iframe" width=500 height=500 src="http://virtual-economy.org"></iframe>
 
<div id="output"></div>
 
</body>
</html>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Michel Plungjan
Michel Plungjan
Flag of Denmark image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of josefkrzysztof
josefkrzysztof

ASKER

Must I save my file as .hta?

After saving it as .hta could I create a input button to search words inside that iframe?

Best regards

Josef
Yes  save as filename.hta and you can open it from your harddisc and do whatever you want since the security is low
And the "B" grade was because?