0
How can I apply the attribute target=_blank
directly in the array below?
arrayLink[1]="https://url/cart.php?a=add&pid=00";
I can’t 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]];
};