Plano de Ensino
by Leonardo Diego
HTML
<html>
<body>
<textarea cols="75" rows="15"></textarea>
</body>
</html>
JavaScript
$(document).ready(function(){
$('textarea').keyup(function() {
var texto = $('textarea').val();
var separarLinhas = texto.split('\n');
$.each(separarLinhas, function(index, linha){
var separarNumeros = linha.split(' ');
if(separarNumeros[0] !== ""){
console.log("Tópico: " + separarNumeros[0] + " Descrição: " + linha.replace(separarNumeros[0], ''));
$('body').append("<b>Tópico:</b> " + separarNumeros[0] + "<br /><b>Descrição:</b>" + linha.replace(separarNumeros[0], '') + "<hr />");
}
});
});
});