Help with border around image

K

Keith Smith

When I use this code....

window.open('gallery/pic1.jpg','windowname','width=775,height=550,resizable=yes,scrollbars=yes,top=10,left=10');

....my web page displays a picture with a white border around it. Is there a
way to get rid of the white border? I want to continue to link directly to
my image (pic1.jpg) and not to an HTML page. The reason for this is because
if I link directly to an HTML page then I seem to have problems with pop-up
blockers.

Anyone know how to get rid of the white around the pic?
 
R

RobB

Keith said:
When I use this code....

window.open('gallery/pic1.jpg','windowname','width=775,height=550,resizable=yes,scrollbars=yes,top=10,left=10');

...my web page displays a picture with a white border around it. Is there a
way to get rid of the white border? I want to continue to link directly to
my image (pic1.jpg) and not to an HTML page. The reason for this is because
if I link directly to an HTML page then I seem to have problems with pop-up
blockers.

Anyone know how to get rid of the white around the pic?

You may have problems with blockers regardless.

<a href="gallery/pic1.jpg"
target="picpop"
title="whatever"
onclick="return openpic(this,775,550)">show pic</a>
...........
...........
function openpic(link, w, h)
{
window.HTML = [
'<body style="margin:0;background:black;' ,
'cursor:pointer;" ' ,
'title="click to close" ' ,
'onload=document.title="'+link.title+'" ' ,
'onblur="top.close()" ' ,
'onclick="top.close()">' ,
'<img src="' + link.href + '" ',
'style="width:'+w+'px;height:'+h+'px;' ,
'border-width:0;"></body>'
].join('');
picpop = window.open(
'javascript:eek:pener.HTML',
link.target,
'width='+w+',height='+h+',top=10,left=10'
);
if (picpop.focus)
picpop.focus();
return false;
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,578
Members
45,052
Latest member
LucyCarper

Latest Threads

Top