In this question, I would like some help in iframe-page interaction. I want the Jquery of my Iframe (see: http://jsfiddle.net/9wuC4/) to run the following function:
$(document).ready(function () {
/* Script for main page*/
$.fn.changeStyle = function () {
$(".outside").css({
display: "none"
});
}
/* End script for main page */
});
Or any other css, than "display: none". Here is my full example of what I have at the moment: http://jsfiddle.net/hZMm3/ If I click on the any input in the iframe, the div with class ".outside" should change in style, like "display: none".
If anyone could help me further I would be very glad.