Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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&amp;companyName=&amp;address1=$address&address2=&amp;city=$city&amp;state=$state&amp;urbanCode=&amp;postalCode=&amp;$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&amp;companyName=&amp;address1=13511+e.+198th&address2=&amp;city=peculiar&amp;state=MO&amp;urbanCode=&amp;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?

share|improve this question
there is no jQuery code shown to help troubleshoot. Use full jQuery version to debug so you can at least isolate what part of jQuery is generating problem, and see what part of your code uses that method . Is this an API call using ajax? Also...since problem is client side, post live source html not server code – charlietfl Oct 21 '12 at 17:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.