Can I place a jQuery modal box in a specific location on the page? For example, showing it in the top right or bottom left.
Can I specify pixels or screen location for where this modal box should show?
Can I place a jQuery modal box in a specific location on the page? For example, showing it in the top right or bottom left.
Can I specify pixels or screen location for where this modal box should show?
Yup. Just look at the id of the containing div, set the position to absolute, then put your coordinates like so:
top left => top: 0; left: 0
or
bottom left => bottom: 0; left: 0