Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

solved, and simple Way: var iframe = document.getElementsByName("id");
document.getElementById('id').src = URL;

share|improve this answer

solved. Firefox does not need something like sandbox.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.