Just wanted to know if it is possible to create a hidden window using javascript?
style. display = "none"; is the ideal way to have it hidden as far as I know.
Press Alt + Tab to select the missing window. Press Alt + Space + M to change the mouse cursor to the move cursor. Use the left, right, up or down keys on your keyboard to bring the window back into view.
The hide() method hides the selected elements. Tip: This is similar to the CSS property display:none. Note: Hidden elements will not be displayed at all (no longer affects the layout of the page). Tip: To show hidden elements, look at the show() method.
You can create an iframe
var element = document.createElement("iframe");
element.setAttribute('id', 'myframe');
document.body.appendChild(element);
You can hide an iframe by setting its width and height to zero or by setting its visibility to hidden in the stylesheet.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With