I have seen the following methods of putting javascript in an <a> tag:
function DoSomething() { ... return false; }
1: <a href="javascript:;" onClick="return DoSomething();">link</a>
2: <a href="javascript:return DoSomething();">link</a>
3: <a href="javascript:void(0);" onClick="return DoSomething();">link</a>
4: <a href="#" onClick="return DoSomething();">link</a>
I understand the idea of trying to put a valid URL instead of just javascript, just incase the user doesn't have JavaScript enabled. But for the purpose of this discussion, I need to assume JS is enabled (they can't login without it).
I personally like option 2 as it allows you to see what's going to be run–especially useful when debuging where there are parameters being passed to the function. I have used it quite a bit and haven't found browser issues.
I have read that people recommend 4 because it gives the user a real link to follow, but really, # isn't "real". It will go absolutely no where.
Is there one that isn't support or is really bad, when you know the user has JS enabled?
