I tried to popup partial view, but its not working ,this is my link
<a id="id1" href="@Url.Action("index", "versus", new { matchid = c.MatchID })" target="_blank" data-toggle="tooltip" data-placement="top"
title="@homeMLName - @awayMLName">
@homeMLName - @awayMLName
</a>
And this is my script:
<script>
$('a#id1').click(function (event) {
event.preventDefault();
window.open($(this).attr('href'), '_blank');
});
</script>
It opens a new tab instead of a new window