Display text onmouseover of radio button(ALT?)
I was thinking this was going to be easy but to no avail. I am needing to display TEXT when a user mouses over a specific radio button so that he is aware of the definition of using a particular button. I thought I could use ALT but that is not working. Any help or direction would be appreciated. Thank you.
Here is my HTML code:
<td align="left" colspan="2">
<b>Please choose Severity of Incident:</b>
High <input type="radio" id="checkseverityhigh" name="checkseverity" value="High"
alt="High â the impact of the offense is grave and or involves numerous parties, it is mandatory that our dept. investigate the incident">
Medium <input type="radio" id="checkseveritymed" name="checkseverity" value="Medium"
alt="Medium â the impact of the offense is moderate and or involves several individuals and or requires our dept. to investigate with the doctorâs office">
Low <input type="radio" id="checkseveritylow" name="checkseverity" value="Low"
alt="Low â the impact of the offense is mild and can be handled within the doctorâs office and requires that the incident only be reported to our dept."><br><br></td>
|