//Onclick event of anchor tag won't work if href is set.
//Workaround: make href call a function that does onclick and then redirects page to link address
//NOT GOOD: Link
//BETTER: Link
function onLinkClick()
{
doSomething();
window.location.href = "/info";
}