Reputation: 237
Like stackOverFlow ,after click the message box,the page jump to my question,locate and highlight the answer .
i want to implement it with both javascript
and jquery
.
Upvotes: 1
Views: 130
Reputation: 10305
see jquery ui's highlight effect for highlighting the element
for scrolling to the element you can do:
$('html, body').animate({
scrollTop: $("#elementtoScrollToID").offset().top
}, 2000);
Upvotes: 2