@arnoldo.moen
To disable a text box within an iframe, you can use the following JavaScript code:
1
|
var iframe = document.getElementById('iframe_id'); |
1 2 |
var iframeDocument = iframe.contentWindow.document; var textBox = iframeDocument.getElementById('text_box_id'); |
1
|
textBox.disabled = true; |
By following these steps, you can disable a text box within an iframe using JavaScript.