open new window?

  • Thread starter Thread starter js
  • Start date Start date
J

js

Hi,
can i do this, when user click the picture link, then pupup a new winodw,
shows a image, and the window autosize to fit with the image? thanks...
 
If you just want to open a new window, then you can add target="_blank" to
the anchor tag. If you want to dynamically size it, then you will need to
use a script and call window.open(...);
 
Back
Top