PDA


View Full Version : Link to same page in custom module.


remon thijssen
08-01-2005, 08:18 AM
I can figure this one out.

I have a custom module where I have links in it pointing to an area in the same module.

At the moment I have this kind of code:



<a href="#FAQ10">Why are bananas yellow?</a>



A bit more down I have then:


<a name="FAQ10">Why are bananas yellow?</a>
<p>
Because they were out of blue.
</p>


Clinking on the first link gives no action. The addressbar changes to the rightname but the browser doesn't seem to know where to look.

How can I fix this?

For the live version of the problem see

http://www.dreamscapemod.com/index.php?dsm=faq
http://www.dreamscapemod.com/index.php?dsm=faq#FAQ02

Thanks

Brian
08-01-2005, 12:39 PM
Change all of your ” marks to a normal ".

remon thijssen
08-01-2005, 03:40 PM
Thanks Brian, that fixed it.