I know that to open a link in html
is used, <a href="algo..">link</a>
and to open another page we use <a href="algo.." target="_blank">link</a>
but I do not know how I can do it so that when I click on the link it shows me what I need but in an external sale of the browser ... I hope you have made me understand and I would appreciate your collaboration with your knowledge.
This is a simple example of what I'm trying to do ... here when I click on the button, the result of the interview shows me that window.
This is my code.
$("#ver").click(function(event) {
var id = 40;
window.open('../../load_students/' + id, '_blank');
});