Can a meta refresh tag use target as an attribute?

My website uses a lightbox and I want the following code to reload the page in the main browser window. Right now it’s reloading the main page INSIDE of the lightbox. It’s almost like the target = top is not supported by the meta refresh tag. If so, does anyone know of another way of doing this?

$popupContent .= "<meta http-equiv='refresh' content='0; url=reports.php?type=memberServices' target='_top'>"; 

Thanks!

Since you are generating the page with PHP there is no need to use http-equiv as you can just write the header directly from the PHP instead using the header() command.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.