I've the following script in my HTML:
jQuery.sundayMorning(text, { destination: 'en' }, function(response) {
var uri = response.translation;
var text = decodeURIComponent(uri);
jQuery(".showText").val(text);
});
Example input in Spanish: la casa de leo el combatiente
.
This translates into English as: leo's house fighter
.
I want to show this as: leo's house fighter
.
Anyone knows a way to solve this?