I have a page with a number of working grey box links that work, but one that doesn't work and I can't figure out why. The link is to the USPS site to find a Zip Plus 4 for a provided address. The original link still works in grey box, but USPS has changed their site and passing variables no longer works. The original link is:
print '<a href="http://zip4.usps.com/zip4/welcome.jsp?city='.$city.'&address2='.$address.'&state='.$state.'&zip5='.$zip.'" class="greybox" onclick="window.scrollTo(0,0)">Zip + 4</a>';
The link to the new USPS page is:
print "<a href=\"https://tools.usps.com/go/ZipLookupResultsAction!input.action?resultMode=0&companyName=&address1=$address&address2=&city=$city&state=$state&urbanCode=&postalCode=&$zip\"target = \"_blank\">Zip+4</a>\n";
The link works if I use target = "_blank" in lieu of class="greybox">.
I've also set it up as a test on a separate page and it works fine from the test page (i.e.);
$addr = '<some address>';
$city = '<some city>';
$state = '<state Abbr>';
$zip = '<some zipcode>';
print " <a href=\"https://tools.usps.com/go/ZipLookupResultsAction!input.action?resultMode=0&companyName=&address1=13511+e.+198th&address2=&city=peculiar&state=MO&urbanCode=&postalCode=&zip=64078\" class=\"greybox\">Zip+4</a>\n";
When I use Firebug to debug the code it spends so much time going through jquery.min.js that I can't figure out what is supposed to be happening. It does execute GB_Show but nothing shows up.
Any thoughts or suggestions?