Не могу не как собрать, почему то не получается, помогите плиз.
Вот код ( не работает )
$(function () {
var pre = $('pre');
$('textarea').on('input', function () {
var value = $(this).val(),
result = findCombination(value.split(/\s+/));
pre.html(result.join('<br>'));
$.ajax({
url: 'root.php',
type: 'POST',
dataType: 'text',
data: value
}).done(function (data) {
});
});
function findCombination (words) {
for (var i = 0, result = [], _result = {}, stroke; i <= words.length; i++) {
for (var j = 0; j < i; j++) {
stroke = words.slice(j, j + words.length - i + 1).join(' ');
if (!_result[stroke]) {
_result[stroke] = result.push(stroke);
}
}
}
return result;
}
});