Hello everyone,
My situation is that, I have page contains a button and some links. Whenever user click on the button, it tries to append tag <base> to <head>
function avoidRediect(){
$('head').append('<base target="_blank" />');
}
But the page does not take the effect(means the link is still opened in the same window). Is my way correct? Thank in advance.