I wrote a simple help bubble script for input elements.   This how it looks.       How to do the same in your product.  --------------------------------------------------------------------------------  Fist add this two css classes to your css file.   .speech-bubble{      width: 780px;      background: #eff1f1;      border:solid 1px #dadada;      padding: 10px;      color:#686868;      position: absolute;  }   .speech-pointer {      content: '';      position: absolute;      border-style: solid;      border-width: 15px 15px 15px 0;      border-color: transparent #eff1f1;      display: block;      width: 0;      z-index: 1;      left: -15px;      top: 25px;  }   --------------------------------------------------------------------------------  Secondl...