views:

43

answers:

1

I'm working with client's CMS and it's adding images like this and i can't change this.

I tried IE7.js but it's not working

<img src="~/imagefolder/CF88B05B445A4D008806C8B3E2830679.png?w=400&h=300&as=1" />
+1  A: 

Unless whatever code runs behind imagefolder dislikes additional, unknown arguments, you might be able to trick the IE hack into thinking it's a .png:

<img src="~/imagefolder/CF88B05B445A4D008806C8B3E2830679.png?w=400&h=300&as=1&dummy=.png" />
ThiefMaster
i can't do this also because it's dynamic
metal-gear-solid