This is really more of an HTML question, but its built by php so it counts... 😉
occassionally, I run across an anchor that just doesn't work - for no reason.
example code:
echo "<a id='".$link."'>".$link."</a>";
...
echo "<a href='#".$link."'>".$link."</a>";
This should work, no?
When I look at the HTML source, they look fine, but when I click, nothing.
Any thoughts?