I'm seeing some very strange things happening here, and not sure what's going on. In my source, and I have checked when viewing the webpage, all I have is this:

<header>
    <hgroup>
        <h1>Dråper til liv</h1>
        <h2>1999-03-20</h2>
    </hgroup>
    <p><a href="http://shop.triangelos.no/album/dr-per-til-liv?pk=514&amp;action=buy"><img title="Kjøp album" src="http://f0.bcbits.com/z/33/39/333998470-1.jpg"></p>
</header>

One link, with an image inside. What I expect. But when I look at the same place in FireBug, I get 3 extra links which look the same but are empty. And I don't understand where they are coming from. They are there, cause I can put text in them using FireBug and they appear on the page. But can't see them in my html source. And I'm not doing anything with this link in JavaScript either as far as I know. What's going on here? Below is a screenshot of FireBug where you can see the link repeated. Anyone here understand this?

You can view the page yourself at http://www.triangelos.no/discography

screenshot from firebug output

link|improve this question

1  
Close the <a> tag? – paislee Feb 21 at 19:42
Yup... *Sigh* – Svish Feb 21 at 19:59
feedback

1 Answer

up vote 4 down vote accepted

Your anchor tag is not closed. Close it and check to see if this solves your issue.

<header>
    <hgroup>
        <h1>Dråper til liv</h1>
        <h2>1999-03-20</h2>
    </hgroup>
    <p>
        <a href="http://shop.triangelos.no/album/dr-per-til-liv?pk=514&amp;action=buy">
            <img title="Kjøp album" src="http://f0.bcbits.com/z/33/39/333998470-1.jpg">
        <!-- no closing </a> -->
    </p>
</header>

Browsers deal with unclosed tags in different ways. You have discovered one of the ways that Firefox "deals" with unclosed anchors.

link|improve this answer
2  
Nice catch!.... – Robert Harvey Feb 21 at 19:43
YES! Finally. Thank you very much. This have been bugging me for ages, haha. – Svish Feb 21 at 19:56
1  
@Svish happy to help - I know from bitter experience how hard it can be to debug these sorts of issue ;) Often all that is needed is a fresh set of eyes. – Michael Robinson Feb 21 at 19:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.