Forum Moderators: open
I am guessing that it looks something like this:
<a href="javascript:void" onclick="dosomething();">click here</a>
Also, by "I go nowhere," do you mean that absolutely nothing happens, or do you mean that you get some type of page-not-found message?
If you do in fact mean that absolutely nothing happens when you click the link, then there are a few possible causes:
- There is no onclick attribute.
- There is an onclick attribute, but executing the code in it doesn't cause a document.location change.
- An error is occurring in the code for the onclick attribute.
- The onclick code doesn't return false, so the browser gets confused.
- The onclick code is trying to open a new window and you have a popup blocker that prevents it.
- Javascript is disabled on your browser.
- The onclick code is being interfered with in some other way.