How can I apply the target=_blank
attribute directly to the array below?
arrayLink[1]="https://url/cart.php?a=add&pid=00";
I can not apply to HTML.
Follow function executed via onclick:
function buyVps(){
var vpsDetails='Processor : '+arrayProcessor[sliderValue]+' GHZ'+'\nRAM : '+arrayRam[sliderValue]+' MB'+'\nRAID Storage : '+arrayStorage[sliderValue]+' GB'+'\nMySql Databases : '+arrayMySqlDB[sliderValue]+' GB'+'\nMonthly Price : '+'R$ '+arrayAmount[sliderValue];window.location.href=arrayLink[arrayBlocks[sliderValue]];
};