I am working with PrimeFaces messages, I want my whole page to scroll to top when p:messages is rendered.
Lets say that your button is causing the messages to appear.
XHTML
javascript
//javascript function which scroll to the first message in page
function scrollToFirstMessage() {
try {
PrimeFaces.scrollTo($('.ui-message :first-child').eq(0).parent().attr('id'));
} catch(err) {
//No Message was found!
}
}
Hope this helps.