To Show an tooltip on Image in Mvc3

asp.net-mvc-3, tooltip

Solution

Use `title` as well as `alt` in the Html tag

<img id="ok" src="../../Images/info.jpg" title="This is your tooltip message"/>

Problem

I'm using asp.net MVC3 and i want to show a table containing information about a course In that i have a field called "Information" which show an image. I want to show the a tooltip when the mouse is taken on that image I'm showing image lik this: ``` <img id="ok" src="../../Images/info.jpg" alt="tooltip"/> ``` I dont want to use any added plugin can anybody help me with this?

Original source