views:

333

answers:

5

http://img6.imageshack.us/img6/1331/19748435.png

Looking at that image is the menu bar on my webpage. So far simple but why would firefox show the link in the parentheses while IE doesn't? I disabled all of my addons and it still does it. I looked at the source in firebug and it shows exactly what's in the HTML:

<div id="menu" >
            <ul>
                <li><a href="">Documentation</a></li>
                <li><a href="">Developer Tools</a></li>
                <li><a href="/">Database</a></li>
                <li><a href="">Management</a></li>
            </ul>  
        </div>

Anyone have any ideas? Thanks.

A: 

Try replacing the href="" with href="#"

Jason
A: 

Try replacing "" with "\0"

DevDevDev
A: 

Did you ever find an answer? I think it might have something to do with web.config compilation debug set to true... Please let me know if you solved this.

Induster
+1  A: 

I was missing the media attribute in my link to css elements. I am using blueprint css. Guess it's mandatory to put

media="screen, projection"
media="print"

in the links to the css and I somehow missed to copy those attributes over.

Gshock
A: 

I had removed one of the script files which seemed to have fixed the problem.

dangerisgo