Tool tip customization in share point 2013

48 views Asked by At

i have a list which constitutes of different fields. On hover of the field currently I see label name and filed validated name. I want to display a new message describing what to fill in that field. And also I want to change the look and feel of the top. Any suggestions are deeply appreciated thanks !!

1

There are 1 answers

0
Anil On

Use https://jqueryui.com/tooltip/
When you build your HTML (list), you have to specify the title attribute for the tooltip text and then jquery ui tool tip will take over by creating tooltip.

 <script>
  $(function() {
    $( document ).tooltip();
  });
  </script>