There is a dynamically created iframe via js
var frame=document.createElement("iframe"); frame.setAttribute("src",url); frame.setAttribute("name",frameName); frame.setAttribute("id",frameName); frame.setAttribute("width","100%"); frame.setAttribute("height","100%"); frame.setAttribute("frameBorder",0); frame.isLoaded=false; document.body.appendChild(frame) Can I change the styles inside the frame using js or css?