Inteligentny scroll podczas dodawania tekstu
Przejdź do nawigacji
Przejdź do wyszukiwania
target = $('#jakisid');
//Scrooling by szeba ;P
var scroolenabled;
scroolenabled = false;
if (target.scrollTop() + target.innerHeight() == target.prop('scrollHeight')) {
scroolenabled = true;
}
//Scrooling by szeba ;P
//
// TU KOD DO DODAWANIA TEKSTU DO TEXTAREA
//
if (scroolenabled) {
target.scrollTop(target.prop('scrollHeight'));
}