Click to See Complete Forum and Search --> : Resize document image


ysherazi
09-11-2004, 03:59 AM
Hello every one

I need help with image resize. I want to restrict image width for example if it is bigger then 300 but if not then let it be the same size.

it's kinda Urgent

would really appriciate Help

regards
Yasir

JPnyc
09-11-2004, 05:04 AM
Well I'm not exactly sure I know what you want, but this might give a bit of direction:

<script type="text/javascript">
window.onload=function() { shrink() } ;
function shrink() {
var imgs=document.getElementsByTagName('img');
for(var i = 0;i < imgs.length;i++)
{
if(imgs[i].width >300) {

imgs[i].style.width = '300px';
} }
}
</script>