Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

 Image Added

 

Code Block
messages = { 'title' : 'Sila isiKey in a suitable title',
            'coordinateremark' : 'CoordinateExtra withnote agoes commahere'};
$( document ).tooltip({
      items: "input",
      content: function() {
        var element = $( this );
        if( messages[$(element).attr("name")] ){
          return messages[$(element).attr("name")];
        }else{
          return false;
        }
      }
    });

...