I have a basic jquery issue. Just trying to make this link open in a new tab/window. I have added _blank but it does not go to a new page. Any ideas?
$('#link13').click(function() {
window.location.href= 'https://www.google.com','_blank';
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<button type="button" class="btn btn-primary" id="link13">See the Resources</button>