+ 1
How can I open new html page using javascript?
in my main html page I want to add a onclick event which will call a function in javascript . after function, i want to open a new html page.
1 Answer
+ 10
window.open(url, "_blank");
in my main html page I want to add a onclick event which will call a function in javascript . after function, i want to open a new html page.