im trying to change the font in iframe , but uts not working , now i have used 2 different functions but none of them worked ...
first i have used the following script below to make sure this is the iframe i want to change its font :
var X1 = document.getElementById("if1").contentWindow.frames[1].location.href;
alert (X1);
then i wrote theses 2 functions and none of then did the job :
method 1 :
function changeSize() {
var frame = document.getElementById("if1");
var content = (frame.contentDocument || frame.contentWindow);
content.body.style.fontSize = "200%";
}
method 2 :
function changeSize() {
var r = document.getElementById("if1").contentWindow.frames[1].querySelector('body');
r.style.fontSize = '200%';
}
both didnt work with me , any help where am i doing wrong ?