I need to set the iframe role property.
const iframe = document.createElement('iframe');
but I am not getting iframe.role property
I need to set the iframe role property.
const iframe = document.createElement('iframe');
but I am not getting iframe.role property
Use setAttribute method.
const iframe = document.createElement('iframe')
iframe.setAttribute('role', 'banner')
console.log(iframe) // <iframe role="banner">...</iframe>