dynamically created "alt" attribute not displaying
Hi, I have created a details page for our company product, which is diplayed dynamically. I have on this page a dynamic image as well thats pulled from my database. As with any image on the web, I want to set the alt attribute, but of course this has to be dynamic as well. I have done this it seems, as I view my source code from a browser, I can see that the alt has a value there and that it is the correct value. My question is, why doesnt this display when I mouse over the image? Is there something I am forgetting to add? Is this attribute deprecated? here is my code for the alt cfoutput:
<cfoutput>
<table align="center">
<tr>
<td><cfif rsDetails.image1 NEQ "">
<a href="images/#rsDetails.image1#" target="_blank"><img src="images/#rsDetails.image1#" alt="#rsDetails.item#" /></a>
</cfif></td>
</tr>
</table>
</cfoutput>
Here is the source code from the browser that shows there is an alt value:
<table align="center">
<tr>
<td>
<a href="images/60K19DL.jpg" target="_blank"><img src="images/60K19DL.jpg" alt="60K19/DL" /></a>
</td>
</tr>
</table>
I hope this is easy to understand without going into lengthy detail. Thanks for any help!
