vote up 0 vote down star

I'm building a status page which should be refreshed periodically.

So, I've had a http-equiv refresh in the <head> section in order to refresh the page every minute :

<meta http-equiv="Refresh" id="refresh" content="60"/>

But, for browser supporting JavaScript, I would like to send an Ajax request checking if the page should be refreshed or not. And so, I would like to disable that http-equiv refresh in JavaScript (because it's Ajax which will do the work).

I tried to remove the tag using JavaScript/PrototypeJs but that doesn't work :

 $('refresh').remove();

It seems that the browser keep trace of that timer and doesn't take care of that DOM update.

Any idea ?

flag

3 Answers

vote up 6 vote down check

Not exactly sure, but maybe:

<noscript>
    <meta http-equiv="Refresh" id="refresh" content="60"/>
</noscript>
link|flag
My understanding was the noscript only worked in the body. – Martin Peck May 11 at 20:48
I'm not sure if that's really XHTML valid but seems to work ! – paulgreg May 11 at 20:55
1  
Hey - it works (just tried it in IE8 with scripting on and off). +1 for this answer. – Martin Peck May 11 at 20:55
Yes, thanks a lot ! Here's the result : build-status.appspot.com/?app_name=your_project_n… – paulgreg May 11 at 20:57
It would be even better if I may found a way to be W3 compliant. :) – paulgreg May 11 at 21:06
show 2 more comments
vote up 0 vote down

This would be better handled on the server. There are a number of tools to let you reliably check to see if the browser supports JS (BrowserHawk is one that comes to mind) or you can check the SupportsECMAScript (in ASP.NET) property of the Browser object and write out different code if the browser supports JS.

link|flag
Supporting JavaScript is not the same as having it enabled. – epascarello May 12 at 1:17
That's true - that's why I referenced a tool like BrowserHawk which actually tests the target browser. – Paul Alexander May 12 at 2:09
vote up 0 vote down

I don't think there's a way of disabling the http-equiv refresh.

Is the status page the first page in your app? If not, then why not get the capabilities of the client up front before requesting the status page? If it is then you might have to inject a UI-less page that grabs the capability of the browser and instantly post back to the real status page. All this assumes that you're not willing to use the user agent string in the HTTP Header to get the browser capability.

link|flag

Your Answer

Get an OpenID
or

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