Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Code Block |
---|
messages = { 'title' : 'Sila isi title',
'coordinate' : 'Coordinate with a comma'};
$( document ).tooltip({
items: "input",
content: function() {
var element = $( this );
if( messages[$(element).attr("name")] ){
return messages[$(element).attr("name")];
}else{
return false;
}
}
}); |
Reference: http://api.jqueryui.com/tooltip/