Code: Select all
function showImage(image_url)
{
var picture = new Image();
picture.src = image_url;
window.open(image_url, '', 'width='+picture.width+', height='+picture.height+', scrollbars=0');
}Moderator: General Moderators
Code: Select all
function showImage(image_url)
{
var picture = new Image();
picture.src = image_url;
window.open(image_url, '', 'width='+picture.width+', height='+picture.height+', scrollbars=0');
}