As far as I know, there's no way way of being certain where that delay arises from, obviously not from the content value of the tag. If the tag is the first tag encountered in the head, it wouldn't be the browser's page parser either, at least probably not.
However, the meta redirect should be avoided whenever possible because not all user agents respond to it, and some can actually turn it off.
Since it is a PHP page that you are redirecting from, why not use a PHP header redirect? To do so, make this the very first thing on the njsexcrimes.com/page.php?here=index page:
PHP Code:
<?php
header('Location:http://www.MarainLaw.com/page.php?here=sexual-assault-in-new-jersey');
die();
?>
Then it will be a server side redirect. It might not be any faster, but it will no longer be subject to any delay or negation on the client side.
A mod rewrite could also be used, but that would require an htaccess file or server configuration change.
Bookmarks