Hi everybody ![[pipe] [pipe] [pipe]](/data/assets/smilies/pipe.gif)
I have a HTML page that contains an <iframe> called "myiframe".
In a javascript function, I write the code inside the <iframe> like this:
OK, I obtain an iframe containing the table that I expected. But there is a problem with FireFox (not with Internet Explorer): if I click somewhere on the table, I can modify the table, like in Microsoft Office Word : its size, size of rows, columns ...
I don't want to be able to modify it. I want a "readonly" table.
Someone has an idea ??
Thanks a lot![[peace] [peace] [peace]](/data/assets/smilies/peace.gif)
![[pipe] [pipe] [pipe]](/data/assets/smilies/pipe.gif)
I have a HTML page that contains an <iframe> called "myiframe".
In a javascript function, I write the code inside the <iframe> like this:
Code:
var startHTML = "<html>\n";
startHTML += "<head></head><body>\n";
startHTML += "<table>\n";
startHTML += "<tr><td>cellul";
startHTML += "</table></body></html>\n";
myiframe.document.open();
myiframe.document.write(startHTML);
myiframe.document.close();
I don't want to be able to modify it. I want a "readonly" table.
Someone has an idea ??
Thanks a lot
![[peace] [peace] [peace]](/data/assets/smilies/peace.gif)