New to HTML5. Client Page (javascript). I have a button I want to invoke another page in another browser tab. It doesn't do that, just reloads the same page in the same tab.
Button: Event : Onclick >>>>
function BCDecisionOptionsClick(event) {
window.open('upcsthome.php','_blank');
}
Also tried things like window.open('http://www.google.com', "My Page", "width=400,height=400");
Any advice please? Thanks