hello... is it possible to run a function from another frame?
let's see this example
<html>
<head>
<title>hum</title>
<script type="text/javascript">
function check(){
// the code is here
}
</script>
</head>
<body>
ha ha
<iframe src="onother_iframe.html"></iframe>
</body>
</html>
what should i write on my "another_iframe.html" to execute/run "function check"? what i want there is: function check run on "this page" ( sorry i dont know how to call this contained frame page), not run on "another_iframe.html".
anyone?



Reply With Quote

Bookmarks