What is best lightweight unobtrusive solution to open any link in custom size popup with "close" button?
Edit 3:
- and if JavaScript is disabled then link should be open in new tab/window like any any normal page.
- popup should be open vertically and horizontally center on any screen resolution ( i've notices pop-up of some siteson net on Dual monitor setup, pop-up opens on second monitor) and without all toolbar, address bar etc.
- height of pop-up should depend on content, not fixed
I don't want to use any plugin to get this effect just need simple and less code which would need jquery library file only
like this
Edit: I'm not asking about "modal window" and "lightbox"
Edit 2:
If js is disabled then popup should be open in a new window and "title" of link should be changed also
like this : Content will come in white place.
<a href="http://stackoverflow.com" Title="Opens in a new pop-up" target="_blank">
into this
<a href="http://stackoverflow.com" Title="Opens in a new window" target="_blank">
and is it possible to make "close window" button work even if JS is disabled.