Click here to Skip to main content
15,896,154 members
Articles / Web Development / Apache
Tip/Trick

A New Discovery?: Omitting File Extension in SRC attribute of IMG tag

Rate me:
Please Sign up or sign in to vote.
4.17/5 (3 votes)
18 Oct 2011CPOL1 min read 21.7K   1   5
Image can also be shown without specifying its extension in HTML doc if it is on server
[First of all, I don't know whether I have selected a proper section for this or not. I didn't find a perfect section for this. If the selected section for this trick is not valid, I am sorry; and if possible, I would change it if you have a good section suggestion.]

I accidently found a new thing that the extension (including the dot) of an image file can be omitted in the SRC attribute of IMG tag in HTML file.

So
HTML
<img src="pencil" />

is valid and showing the image if the actual file name is "pencil.jpg".

When I put 3 images pencil.png, pencil.jpg and pencil.gif in a folder and put 3 IMG tags in HTML file.
HTML
<img src="pencil" />
<img src="pencil" />
<img src="pencil" />

-----
Update:
This code is showing 3 PNG images in Firefox and Internet Explorer; but Chrome, Opera and Safari are showing 3 JPEG images!
-----
Omitting file extension also worked when I used stylesheet:
HTML
<div style="width:100px; height:100px; background-image:url(pencil)"></div>

It is displaying the image as background in a 100x100 pixel sized Div.

This trick worked on my computer on WAMP server (Apache) (http://localhost/example.htm), but it didn't work when I opened the file directly in browser (file:///c:/wamp/www/example.htm). This trick also worked with HTML-5 document.

I have Win 7 Ultimate 32-bit with WAMP Server 2.0c installed.
-----
Update:
I checked this on both Windows and Linux servers but it is not working on live servers. :-(
Totally confused. It is working on my computer having server of Apache and Windows 7 OS but it is not working on live Windows or Linux servers! It is also not working when the file is opened from local harddisk.
-----

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
I am a web developer. My expertise is in PHP, HTML, CSS, JavaScript, MySQL, VB.NET, Photoshop etc. I also have some knowledge in ASP.NET, C#.NET.

I am an innovative thinker so I like to find simple, easy and innovative ways of solving day-to-day problems. I like programming and problem solving and helping people. As I am knowledge hungry; I like to use the internet and softwares to gain as much knowledge as possible.

Comments and Discussions

 
GeneralThe contents of the SRC are meant to be passed verbatim to t... Pin
Richard Brett18-Oct-11 12:12
Richard Brett18-Oct-11 12:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.