Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Firefox doesn't show jpg files from a web page while other browsers do

  • 2 replies
  • 4 have this problem
  • 2 views
  • Last reply by cor-el

more options

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>
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: <pre><nowiki><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></nowiki></pre>

Modified by cor-el

Chosen solution

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
Read this answer in context 👍 2

All Replies (2)

more options

Chosen Solution

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
more options

Note the there is also a problem with the encoding (UTF-8: � - Ø, &#xd8; ), so you have to change those characters to their UTF-8 equivalent.

Modified by cor-el