Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

window.frames['iframe'].location is undefined in firefox

  • 2 iimpendulo
  • 8 inale ngxaki
  • 1 view
  • Impendulo yokugqibela ngu Jigarp

more options

i m trying window.frames['iframe'].location , but i get the error that its undefined. Please tell me what is the exact solution or any alternate for this.

i want to reload the iframe page like window.frames['frame'].location.reload();

Its working fine in IE and chrome, only in firefox i get this problem. Plz Help on this...

i m trying window.frames['iframe'].location , but i get the error that its undefined. Please tell me what is the exact solution or any alternate for this. i want to reload the iframe page like window.frames['frame'].location.reload(); Its working fine in IE and chrome, only in firefox i get this problem. Plz Help on this...

Isisombulu esikhethiweyo

I think that window.frames[] only work with an index number and not with the frame name.

You can try to use one of these:

document.getElementsByName("<name>")[0].
document.querySelector('frame[name="<name>"]')
document.getElementById("<id>").
Funda le mpendulo kwimeko leyo 👍 0

All Replies (2)

more options

Isisombululo esiKhethiweyo

I think that window.frames[] only work with an index number and not with the frame name.

You can try to use one of these:

document.getElementsByName("<name>")[0].
document.querySelector('frame[name="<name>"]')
document.getElementById("<id>").
more options

No...only in firefox there is problem i have checked window.frames[] with name in IE and chrome, thnx for the reply i will try these solutions.