I've got a really complicated html page and I've added some bookmark anchors at various points. The anchors look like this:

<a href="#foo bar">click here for foo bar</a>
lorum ipsum etc
<a name="foo bar">foo bar</a>

But when you click on them, nothing happens - the url in the address bar doesn't change, and the page doesn't move.

If I take my anchors out and put them into a simpler page, they start working, so I think something must be interfering with the navigation somehow, but I can't think how to nail it down. I wondered about an error in the javascript somewhere that was cancelling the navigation, but the page has thousands of lines of javascript and I've not found anything suspicious yet.

The problem occurs in both Chrome and Firefox.

How can I debug this problem?


UPDATE: Could this be a CSS issue? the target anchors are within a <div> with the CSS property overflow:auto;. This is causing the scroll bar to appear inside the div instead of the edge of the page - which was not the case with my simple text page.

UPDATE 2: overflow:auto doesn't break named anchors; tested with a simple example

link|improve this question

Are spaces allowed in bookmarks ? – sjums Feb 1 at 21:14
2  
I'd start by looking for JavaScript that's stopping the click event from propagating or prevent the default action. If you're using jQuery, api.jquery.com/event.stopPropagation and api.jquery.com/event.preventDefault – j08691 Feb 1 at 21:16
@sjums I tried copying the bookmarks to a simple test page, and they worked OK with spaces. I'll experiment anyway though - anything is worth trying at this point. – Colin Pickard Feb 1 at 21:17
1  
@j08691 And in most cases simply return false; somewhere in an event handler. I suspect that too. Try disabling Javascript first and see if they work. – bažmegakapa Feb 1 at 21:17
1  
@bazmegakapa unfortunately the whole section of the page is loaded via ajax so not easy to test without javascript - and pulling the offending section out into a simple test page didn't reproduce the problem. – Colin Pickard Feb 1 at 21:29
show 5 more comments
feedback

3 Answers

Try this:

<a href="#foo bar">click here for foo bar</a>
lorum ipsum etc
<a id="foo bar">foo bar</a>

So basically change your name attribute for an id one.

Also... I think that it will basically be looking for "foo" rather than "foo bar". I haven't tested this though.

link|improve this answer
thanks for your answer. it turned out my anchors were actually working ok, it was just some duff javascript causing my problem. By the way, I did a quick test of the anchors; you can see it here: jsfiddle.net/wFcnk – Colin Pickard Feb 8 at 15:04
feedback

named anchors need to have a have a one word name or id (id better, since name is being depecated)

this will work:

<a href="#foo-bar">click here for foo bar</a>
    lorum ipsum etc
<a id="foo-bar">foo bar</a>
link|improve this answer
thanks for your answer. I'll change my code to use id for future compatability, although it seems that for now multi-word anchors do actually work - check out this example: jsfiddle.net/wFcnk – Colin Pickard Feb 8 at 15:06
yep, I tried it out after answering and it does appear to work (odd!), but according to w3c, only strings matching the pattern [A-Za-z][A-Za-z0-9:_.-]* should be used for ids. eg:"and must contain at least one character. The value must not contain any space characters." from here: w3.org/TR/html5/elements.html#the-id-attribute – Evert Feb 8 at 15:25
feedback
up vote 0 down vote accepted

This was definitely a scripting problem rather than the syntax of the anchor. I eventually (accidently) debugged the problem by adding some invalid javascript to the click() handler, which broke the click handler but caused the anchors to start working again. I was able to proceed from there.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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