|
Play with this.. I put it in a page onLoad event and it worked ok in Opera. Didn't test it in other browsers. Keep in mind the images will look crappy.
for(i=0;i<document.images.length;i++){
if(document.images[i].width > 450){
document.images[i].width=450;
}
}
|