$(function(){
var currencies = [
{ value: 'be' },
{ value: 'beat' },
{ value: 'become'},
{ value: 'begin' },
];
$('#autocomplete').autocomplete({
lookup: currencies,
onSelect: function (suggestion) {
var thehtml = '<strong>Currency Name:</strong> ' + suggestion.value + ' <br> <strong>Symbol:</strong> ' + suggestion.data;
$('#outputcontent').html(thehtml);
}
});
});