Firefox doesn't show jpg files from a web page while other browsers do
I have created a page and uploaded www.nutechequipments.com/equipment.html page doesn't show the jpg files in only firefox everywhere including Dubai. But all the other browsers show the uploaded jpg pictures in perfect manner. In Firefox only the table is loaded with placeholders. It is not a problem with my computer. It is the problem all over the world.
the sample html code is given below:
<td><img src="equip\equip.jpg" size width="110" height="90"></td><td><img src="equip\equip1.jpg" size width="110" height="90"></td><td><img src="equip\equip (2).jpg" size width="110" height="90"></td><td><img src="equip\equip (3).jpg" size width="110" height="90"></td>
Modified
الحل المُختار
You have backslashes (\: escaped as %5C as seen in Tools > Page Info > Media) in the scr attribute of the images and that doesn't work in Firefox. You need to change the backslashes to forward slashes
equip%5Cequip.jpg equip%5Cequip1.jpg equip%5Cequip%20(2).jpg equip%5Cequip%20(3).jpg equip%5Cequip%20(4).jpg equip%5Cequip%20(5).jpg equip%5Cequip%20(6).jpg equip%5Cequip%20(7).jpg equip%5Cequip%20(8).jpg equip%5Cequip%20(9).jpg equip%5Cequip%20(10).jpg equip%5Cequip%20(11).jpg equip%5Cequip%20(12).jpg equip%5Cequip%20(13).jpg equip%5Cequip%20(14).jpg equip%5Cequip%20(15).jpg equip%5Cequip%20(16).jpg equip%5Cequip%20(17).jpg equip%5Cequip%20(18).jpg equip%5Cequip%20(19).jpg equip%5Cequip%20(20).jpg equip%5Cequip%20(21).jpg equip%5Cequip%20(22).jpg equip%5Cequip%20(23).jpg equip%5Cequip%20(24).jpg equip%5Cequip%20(25).jpg equip%5Cequip%20(26).jpg equip%5Cequip%20(27).jpg equip%5Cequip%20(28).jpg equip%5Cequip%20(29).jpg equip%5Cequip%20(30).jpg equip%5Cequip%20(31).jpgRead this answer in context 👍 2
All Replies (2)
الحل المُختار
You have backslashes (\: escaped as %5C as seen in Tools > Page Info > Media) in the scr attribute of the images and that doesn't work in Firefox. You need to change the backslashes to forward slashes
equip%5Cequip.jpg equip%5Cequip1.jpg equip%5Cequip%20(2).jpg equip%5Cequip%20(3).jpg equip%5Cequip%20(4).jpg equip%5Cequip%20(5).jpg equip%5Cequip%20(6).jpg equip%5Cequip%20(7).jpg equip%5Cequip%20(8).jpg equip%5Cequip%20(9).jpg equip%5Cequip%20(10).jpg equip%5Cequip%20(11).jpg equip%5Cequip%20(12).jpg equip%5Cequip%20(13).jpg equip%5Cequip%20(14).jpg equip%5Cequip%20(15).jpg equip%5Cequip%20(16).jpg equip%5Cequip%20(17).jpg equip%5Cequip%20(18).jpg equip%5Cequip%20(19).jpg equip%5Cequip%20(20).jpg equip%5Cequip%20(21).jpg equip%5Cequip%20(22).jpg equip%5Cequip%20(23).jpg equip%5Cequip%20(24).jpg equip%5Cequip%20(25).jpg equip%5Cequip%20(26).jpg equip%5Cequip%20(27).jpg equip%5Cequip%20(28).jpg equip%5Cequip%20(29).jpg equip%5Cequip%20(30).jpg equip%5Cequip%20(31).jpg
Note the there is also a problem with the encoding (UTF-8: � - Ø, Ø ), so you have to change those characters to their UTF-8 equivalent.
Modified