faqts : Computers : Programming : Languages : Html

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

2 of 4 people (50%) answered Yes
Recently 2 of 4 people (50%) answered Yes

Entry

HTML: Picture: Clickable: Create: How to create clickable image + windows statusbar information?

Jan 25th, 2005 11:14
Knud van Eeden,


----------------------------------------------------------------------
--- Knud van Eeden --- 05 January 2005 - 05:48 pm --------------------

HTML: Picture: Clickable: Create: How to create clickable image + 
windows statusbar information?

---

Method: Using the anchor tag '<A>'


in general:

--- cut here: begin --------------------------------------------------

<A
  HREF="<your url>"
>
 <IMG
   SRC="<your picture>"
   ONMOUSEOVER="window.status='<your message>'; return( true );"
   ONMOUSEOUT="window.status='<remove your message>';"
 >
 </IMG>
</A>

--- cut here: end ----------------------------------------------------

---
---

e.g.

--- cut here: begin --------------------------------------------------

<!-------------------------------------------------------------------->
<HTML>
<!-------------------------------------------------------------------->
<BODY>
<!-------------------------------------------------------------------->
<A
  HREF="http://www.knud.info"
>
<!-------------------------------------------------------------------->
<IMG
  SRC="c:\temp\photoknud.gif"
  ONMOUSEOVER="window.status='hello'; return( true );"
  ONMOUSEOUT="window.status='';"
  HEIGHT="100"
  WIDTH="100"
>
<!-------------------------------------------------------------------->
</IMG>
<!-------------------------------------------------------------------->
</A>
<!-------------------------------------------------------------------->
</BODY>
<!-------------------------------------------------------------------->
</HTML>
<!-------------------------------------------------------------------->

--- cut here: end ----------------------------------------------------

---
---

Internet: see also:

---

JavaScript: Image: Clickable: Link: Overview: Can you give an overview 
of links?
http://www.faqts.com/knowledge_base/view.phtml/aid/33571/fid/122

----------------------------------------------------------------------