I would just do this:
var next=numb-0+1;
Type: Posts; User: Digger3000; Keyword(s):
I would just do this:
var next=numb-0+1;
Another thing you can't do is refresh an iframe on a different domain.
Is it possible that it's not working because my page and the other page are on different domains?
I tried this:
"function refreshIFrame(iframeID) {
var a=document.getElementById(iframeID);
var url = a.contentWindow.URL;
a.contentWindow.URL = null;
a.contentWindow.URL = url;
}"
And in...
I looked at the firefox error console and it said this: "Error: uncaught exception: Permission denied to get property HTMLDocument.URL"
Well, I've tried this:
var a=document.getElementById("a");
a.src=a.src;
And that works, but only to a certain extent. I'll explain what I mean, so bear with me.
Let's say I have an iframe...
I've been trying to figure this out for a couple days. It seems like it should be simple, but apparently, it's not. How do I refresh an Iframe with Javascript?