I am calling the js function from the href
function topicApproval()
{
var approve = confirm('Do you wish to proceed?');
if(approve)
{
window.location('http://www.sample.com');
}
}
Here is the function called Yes
But it is not redirecting........ Please help me..