For example, I have the following code:
<img src="photo_ring _r1_c1.jpg" title="" alt="Rings"
style="width: 200px; height: 150px;" usemap="#photo_ ring_r1_c1">
<map name="photo_rin g_r1_c1">
<area shape="circle" coords="30,30,3 0"
href="javascrip t:show_details( 'ring1');" alt="ring1" title="ring1">
</map>
Is it possible to modify the
href="javascrip t:show_details( 'ring1');"
to something like
href="javascrip t:show_details( embeddedObject. tags.alt);"
So the 'alt' of area shape will be the parameter of teh show_details
function?
<img src="photo_ring _r1_c1.jpg" title="" alt="Rings"
style="width: 200px; height: 150px;" usemap="#photo_ ring_r1_c1">
<map name="photo_rin g_r1_c1">
<area shape="circle" coords="30,30,3 0"
href="javascrip t:show_details( 'ring1');" alt="ring1" title="ring1">
</map>
Is it possible to modify the
href="javascrip t:show_details( 'ring1');"
to something like
href="javascrip t:show_details( embeddedObject. tags.alt);"
So the 'alt' of area shape will be the parameter of teh show_details
function?
Comment