スクロールを最下部に移動する

http://www.kinopyo.com/blog/javascript-get-scrollbar-to-bottom

$.fn.scrollToBottom = function(){
	if(this.length == 0 || !this[0].scrollHeight) return;
	this.scrollTop(this[0].scrollHeight);
};
$(function(){
	$("#scrollItem").scrollToBottom();
});