Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Getting a link error only in Firefox, not Chrome and not IE

  • 1 件の返信
  • 1 人がこの問題に困っています
  • 2 回表示
  • 最後の返信者: cor-el

more options

I'm not the best at coding and I can't figure out why this link works in Chrome, and works in IE, but not Firefox, when you click on the coupon it gets an error. Any idea why??

http://www.myvalleydining.com/index.php?page=descriptions&id=70

I'm not the best at coding and I can't figure out why this link works in Chrome, and works in IE, but not Firefox, when you click on the coupon it gets an error. Any idea why?? [http://www.myvalleydining.com/index.php?page=descriptions&id=70 http://www.myvalleydining.com/index.php?page=descriptions&id=70]

選ばれた解決策

You forgot a closing ">" in that DIV:

<div class='restIcon'
<a href='public/coupon-template.php?id=70&code=' onclick='OpenPopup(this.href); return false'>
 <img src='../images/coupon.gif' width='50' height='50' border='0'/>
 <label>Coupon</label>
</a>
</div>

Firefox seems to make this of it if I inspect that element via the right-click context menu.

<div onclick="OpenPopup(this.href); return false" href="public/coupon-template.php?id=70&amp;code=" <a="" class="restIcon"><img width="50" height="50" border="0" src="../images/coupon.gif"/><label>Coupon</label>
</div>
この回答をすべて読む 👍 0

すべての返信 (1)

more options

選ばれた解決策

You forgot a closing ">" in that DIV:

<div class='restIcon'
<a href='public/coupon-template.php?id=70&code=' onclick='OpenPopup(this.href); return false'>
 <img src='../images/coupon.gif' width='50' height='50' border='0'/>
 <label>Coupon</label>
</a>
</div>

Firefox seems to make this of it if I inspect that element via the right-click context menu.

<div onclick="OpenPopup(this.href); return false" href="public/coupon-template.php?id=70&amp;code=" <a="" class="restIcon"><img width="50" height="50" border="0" src="../images/coupon.gif"/><label>Coupon</label>
</div>