Mini language library for says formal and informal 'greetings' in many (40) languages!
- Easy to use.
- Support greetings in 40 language
- Simple shortcut using _G
- Easy to integrate with JQuery selector using HTMLGreet()
// Example
// Instantiate new object "without new"
var g = _G('John', 'Doe');
// chainable methods
g.greet().setLanguage('jp').greet(true);
// With Jquery example
$('#login').click(function() {
var greeting = _G('John', 'Doe');
greeting.setLanguage($('#lang').val()).HTMLGreet('#greet', true);
});