mam pewny kod jquery wstawiony w <head>, ale cos mi sie wydaje, ze nie lapie on czesci img, ktore sa w tabeli, w komorce.
Jak mozna zaimplementowac ten kod do komorki?
<script type="text/javascript"> $(document).ready(function(){ var i; for (i in document.images) { if (document.images[i].src) { var imgSrc = document.images[i].src; if (imgSrc.substr(imgSrc.length-4) === '.png' || imgSrc.substr(imgSrc.length-4) === '.PNG') { document.images[i].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true',sizingMethod='crop',src='" + imgSrc + "')"; } } } }); </script>