views:

54

answers:

3

i am trying to find in this code where it instructs a new browser window?

<div id="mlcalc-w1">
<div id="mlcalc-w2">
<div id="mlcalc-w3">
<div id="mlcalc-w4">
<div id="mlcalc-w5">
<link rel="stylesheet" type="text/css" media="screen,projection" href="http://www.mortgageloan.com/sites/all/themes/mortgageloan/css/tool/mlcalc-inline.css"&gt;
<div id="mlcalc-pres">
<h2 id="mlcalc-head">
<em>19 Mortgage Calculators</em> <em><a href="http://www.mortgageloan.com/widgets/#tool-num-4" rel="nofollow" target="_blank">Get this Widget</a><span></span></em>
</h2><iframe id="mlcalc-calc" src="http://www.mortgageloan.com/tool/mortgage/mortgage-calculator-package-content" scrolling="no" border="0" frameborder="0"></iframe>
<p id="mlcalc-footer">
Related Resource: <a href="http://www.mortgageloan.com/"&gt;Refinance &amp; Mortgage Rates</a>. Calculator © MortgageLoan.com.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
+5  A: 

see the target="_blank" attribute of your anchor.

confusedGeek
Specifically, target="_blank" is a non-standard convention to instruct browsers to open the link target in a new window. All the modern browsers obey it currently though.
workmad3
+1  A: 

See the target="_blank" part in your code, it tells the browser to open the link in a new window.

Tom
+1  A: 

see the target="_blank" attribute of your anchor.

confusedGeek
Thought you'd mention it twice? :)
jball
no, the first time I submitted the server never responded. So I figured maybe the click didn't register and clicked again, good thing it was a shopping cart checkout....
confusedGeek