I keep the images of my site in Picasa... as we know we can set size of picture like this.
http://lh5.ggpht.com/-i97UI0TXchE/UatpZd-E3tI/AAAAAAAAAFg/HUu-QK63ce0/w900-h0/running-sml.jpg
The part w900-h0
means that, the picture size is: width
900px and the height
0 (auto).
And so I need change this url, (acctualy the part w900-h0
) of the image automaticly depending of the viewport of the device, I know that I can make images fluid just set them max-widht:100%; via css, but in that case the picture's size is not getting smaller, and it just visually small.
How can I change the part w900-h0
via java-script, for example when viewport is 480 the url is changed w300-h0
and so on.