I want to resize the browser using my javascript or jquery code. I have tried by modifying window.InnerRadius value. Please
function resize() {
window.innerWidth = 700;
}
<button onclick="resize()">resize</button>
But it is not working. Is it possible to resize browser using JavaScript or jquery?