Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

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>