I have a web application which the customer requested that the browser window size will be changed when clicking on different buttons.
I found in that link that running the "chrome.exe" process with "--app" is very useful since the following javascript code will work even though it is not a child window:
window.moveTo(580,240);
window.resizeTo(800,600);
Is there any equivalent in Firefox and IE for this "--app" mode ?
Thanks !