473,657 Members | 2,513 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

<image> tag?

Hi,
today i found out some browsers (at least Mozilla and IE) support the
<image> tag, its usage seems to be the same as for the <img> tag
(IMDB.com uses it for example). I did not find anything in the web so
far where this tag comes from (ok it's also a bit difficult to search
for this, since search engines all seem to ignore < or >), someone knows
more about this tag? I found some old reference that this tag at least
already existed in 1998 or 1999, but i did not find it in the HTML 4.0
nor 3.0 nor 2.0 spec from the W3C (took a quick look at those specs).
Was this maybe introduced during the old browser wars days?

Greetings
Frank
Nov 4 '05 #1
3 1994
In our last episode, Frank Wein <mc************ ***@gmx.de> pronounced to
comp.infosystem s.www.authoring.html:
today i found out some browsers (at least Mozilla and IE) support the
<image> tag,
Never heard of it. Can't find any reference to it either.
its usage seems to be the same as for the <img> tag
So what's the point?
Was this maybe introduced during the old browser wars days?


Possibly. It's certainly of no use to anyone, especially if it is
exactly the same as img.

--
Mark Parnell
http://clarkecomputers.com.au
Nov 4 '05 #2
Frank Wein wrote:
today i found out some browsers (at least Mozilla and IE) support the
<image> tag, its usage seems to be the same as for the <img> tag
It's an old feature:
"Thought you might like to know: All the browsers surveyed also support
another form of this element (which is not a part of ANY HTML standard.)
The string "IMAGE" can replace "IMG". Internet Explorer supports this
since version 1.0, Mosaic since at least 2.1, and Netscape since version
1.1."
http://www.blooberry.com/indexdot/ht...es/i/image.htm

Presumably some authors wrote <image> because that's how they remembered
the tag from some lessons or tutorials, or browser programmers just
thought that people _might_ write so.
(IMDB.com uses it for example).


That's bad practice: it gains nothing. And it even wastes two
characters. :-)

Browser vendors dare not drop support to it, since it just might be used
somewhere, and it really does not cost to supportit. But who knows -
after all, the expertlore about this tag may fade away, and then...
Nov 4 '05 #3
Jukka K. Korpela wrote:
Frank Wein wrote:
today i found out some browsers (at least Mozilla and IE) support the
<image> tag, its usage seems to be the same as for the <img> tag


It's an old feature:
"Thought you might like to know: All the browsers surveyed also support
another form of this element (which is not a part of ANY HTML standard.)
The string "IMAGE" can replace "IMG". Internet Explorer supports this
since version 1.0, Mosaic since at least 2.1, and Netscape since version
1.1."
http://www.blooberry.com/indexdot/ht...es/i/image.htm

Presumably some authors wrote <image> because that's how they remembered
the tag from some lessons or tutorials, or browser programmers just
thought that people _might_ write so.


Ok, thanks for the info :).

Frank
Nov 4 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
17247
by: Csaba2000 | last post by:
I want to be able to programatically click on the center of an <INPUT type=image ...> element (I only care about IE 5.5+). This should work regardless of whether IE has focus. Normally you would do myDomElement.click and the mouse doesn't matter, but in the case of an input image element, what happens is the submitted url has something like "?x=12&y=7" appended to it (the numbers vary per mouse position on the clicked element). If you hit...
3
7628
by: Csaba Gabor | last post by:
When I click on the image form element <INPUT type=image name=point src="map.png"> point.x and point.y values get submitted to the server specifying where on the image I have clicked. Is there any (simple) way to get ahold of that point.x and point.y BEFORE they are sent to the server (and prevent that from happening)? Ie. I just want the points where someone clicks on an image and not interested in a submission to the server.
1
4194
by: Chris Fink | last post by:
Hello, Does anyone know of a way to handle broken href image tags either by using the html img tag or the asp:image server control? For example, if my src attribute is broken, I would like to display an alternate image, ie one that blends in with the background instead of the standard eye sore x. I would imagine I could use the <asp:image> server controls events to check the src and then change it if it is broken, i am just not clear...
0
1108
by: DavidS | last post by:
I have HTML web page with <asp:Image id=img_L runat=server ImageAlign=Top Visible=True Width=y Height=x></asp:Image>. For some images, less than 128K I can view image. Other image files > 128K, image is not viewable - comes up with X in picture box. Is there size restriction. How can I remove this - or how can I show images > 128K in web page. NOTE: x & y in asp:Image spec are distinct values - say 128 x 128 or 64 x 64 image sizes
0
1160
by: topdawg147 | last post by:
Whenever I rotate/flip a tiff image, the RawFormat changes from Tiff to MemoryBitmap. ' image format is tiff. imgSomePic.RotateFlip(RotateFlipType.Rotate180FlipNone) ' now image format is memory bitmap. Does anyone know why this happens? and an easy way to prevent it?
4
1732
by: R.A.M. | last post by:
Hello, Could anyone help me to handle <asp:Image> click in behind code? I have: <asp:Image ID="DotNETImage" ImageUrl="Images/DotNET_360x280.jpeg" AlternateText="Microsoft .NET version 2.0" Width="360" Height="280" runat="server" /> which I need to handle when clicked. I tried:
3
21254
by: jackiepatti | last post by:
QUESTION: I have a web page containing a form that contains an image instead of a submit button, e.g. <form name='myform' action='get' method='otherpage.asp'> <input type='image' src='picture.gif' name='myimage' id='myimage'> </form> When forms with image types are submitted, the value is not returned; instead, when the form is submitted, the XY coordinates of the where the user clicked on the image are sent. For example, if the user
1
2118
by: MRW | last post by:
Hello! I'm taking a file name from a database and using the <asp:imagetag in GridView to show the image. However, some of the file names have spaces in it and no matter what I do, for example: <asp:Image runat=server ImageUrl=<%# HttpUtility.HtmlDecode((Eval("WallpaperLink"))) %/> It still displays the file as: bobs%20image. %20 keeps popping up.
2
2794
by: Casey | last post by:
I'm doing some image processing that requires accessing the individual pixels of the image. I'm using PIL 1.1.6 and creating a 2D array of pixel RGB tuples using the Image class instance load() method. Unfortunately, I can't seem to find a reciprocal function that converts the 2D array of RGB tuples back to an image. I've gone through all of the online documentation and can't seem to find what should be an obvious solution. Any...
0
8844
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8518
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8621
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7354
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6177
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5643
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4330
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2743
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1734
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.