I 've iframe on my page. the src of iframe is page from another domain(I have Cross-domain communication with them). When I open iframe, then I need to change it with another page. For Chrome I was doing like that:
frames['iframe_id'].location.href=URL;
iframe.sandbox = 'allow-forms allow-scripts allow-same-origin';
how can I do the similar thing in Firefox?