Re: iframe refresh

[email protected] Wed, 23 Apr 2014 15:04:31 -0700 (PDT)
Newsgroups gmane.comp.mozilla.devel.xpfe
Message-ID <[email protected]>
On Thursday, April 10, 2014 3:25:42 PM UTC-7, [email protected] wrote:
> On Thursday, April 10, 2014 10:48:12 AM UTC-6, [email protected] wrote:
> 
> > Is there a way to refresh the contents of an iframe? I tried document.getElementById("iframeid").setAttribute("src","website_url"); but it didn't work.
> 
> 
> 
> 
> 
> Is "website_url" a variable or a string?  As shown in your example, it's a string and that won't work.
> 
> 
> 
> The following worked for me:
> 
> 
> 
> doRefresh(website_url) {
> 
>    document.getElementById("iframeid").setAttribute("src",website_url);
> 
> }

Yup, stupid mistake. Sorry!