I have a div with the following css
CSS
#divToUpdate {
width: 300px;
height: 300px;
overflow: hidden;
}
and I am sending it new html content from jquery.
JS (jquery)
$("#divToUpdate").append(newInfo);
But i want the 'focus' of the div to be on the new content, not on the historically first content.