I just want to ask if there is a way to use the img tag with case sensitive. There are circumstances , that my script not showing the pictures in my site because of case sensitivity. For example the filename of the image is ImgE.jpg and in the code the script look some like <img src="imge.jpg">, the picture won't show because they are not much case. Any idea to solve this problem..
Change the Markup to <img src="ImgE.jpg" alt=""> (assuming it is just a decorative image -- otherwise use descriptive alt text). James
I know that is possible if that is manual, what if the script creating it is automatic. The script is using all small caps while some of the image don't use small caps all the time. What I want is that interpret both ImgE.jpg and imge.jpg as equal files
I missed that this as a scripting problem in your original post. You might post this in the Programming Forum (PHP/JS). What are small caps? James
How does your script is managing these images? Where do you store the file name (the one in small caps)? Can't you make your script to rename the files in small caps?