I\'m trying to change with jQuery language of a table with datatables. I\'m trying to push a button to change the language of the table.
$(\'#prueba\').live(
As the original poster mentioned, this does not work:
tablacliente.fnSettings().oLanguage = espanol; // does not work!
but something like this should work, without having to destroy the table:
var oLanguage = tablacliente.fnSettings().oLanguage;
for (var field in espanol) {
oLanguage[field] = espanol[field];
}