Skip to content Skip to sidebar Skip to footer

How To Use Http-equiv Refresh On Mobile?

How can I refresh a HTML5 page in a mobile browser? I use this in desktop version and working fine: The

Solution 1:

I've used JavaScript for solving this. It's working fine on Android, and I think I've tested it in Opera Mobile (I'm not sure).

My code was something like this:

setTimeout(function() {
location.replace('./order_list');
}, 5000);

Post a Comment for "How To Use Http-equiv Refresh On Mobile?"