I would like a popup to open from the bottom right of the browser/page. I have the html/css popup but dont know how to open it from bottom right of the page. A jquery solution is welcome.
Asked
Active
Viewed 8,891 times
2 Answers
2
Give your popup an id and change its css properties like so:
position: absolute;
bottom: 0;
right: 0;

Alp
- 29,274
- 27
- 120
- 198
0
try this code
let left = (window.outerWidth - 400) ;
let top = (window.outerHeight - 500 );
let popup= window.open(`mainfolderpath/popup.html`,'Calculator',`left=${left},top=${top},width=400,height=500`); return false;

Akram Elhaddad
- 194
- 3
- 7