Hi, I have locally two html files:
main.html: <html> <head> </head> <body> <script type="text/javascript"> // here?? </script> <iframe id='myframe' src="sample.html"></iframe> </body> </html> sample.html <html> <head> </head> <body> <h1>title</h1> <h3>title 2</h3> </body> </html> sample.html is loaded in main.html by iframe. how is it possible catch (for example) a mouse-click on an element of sample.html in main.html without modify sample.html above with jquery???? I have tried many times and ways without success. Can you help me? Thanks, Julio

