I have a component that lists comments. The component is reloaded at fix intervals, and when the end user creates a new comment.
I have made it possible for the user to embed youtube videos. The problem is: when the comments component is reloaded, the entire video gets refreshed as well. I would like to know if there is some easy way to update the comments component with only the new comments, without reloading the entire component. Otherwise, I am ready to write more code to selectively insert comment updates without reloading the whole component.

