Return to the Brain Barn blog post
Padding the page to prove a point. Scroll down to see the test links.
function Test()
{
alert('Hello World!');
return false;
}
Using <a href="#" onclick="..." />
onclick="Test();" ||
onclick="javascript:Test();" ||
onclick="javascript:void Test();"
Using <a href="..." />
href="Test();" ||
href="javascript:Test();" ||
href="javascript:void Test();"