1
I would display a small message to the user, style those when passing the mouse, if I am not mistaken would be the attribute
alt="my message"
however I am using Asp.net-mvc-5 and I am finding it difficult to do. My message, I would like it to appear on @Html.Labelfor, and also wanted it to be a fixed message, I believe that with CSS, jquery or javascript I can do, but I couldn’t find anything that would help me.
<div class="form-group">
@Html.LabelFor(model => model.Celular, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.Celular, new { htmlAttributes = new { @class = "form-control celular", id = "txt-tel" } })
@Html.ValidationMessageFor(model => model.Celular, "", new { @class = "text-danger" })
</div>
</div>
This is what you want?
– Leonel Sanches da Silva
Similar to this, however, the bigger idea, would be that a balloon would be displayed when loading the page, and it would disappear when the user hovers over, but in this format already helps me.
– Fabio Souza
So then?
– Leonel Sanches da Silva
Yes, thank you @Ciganomorrisonmendez
– Fabio Souza