Jack
Jack

Reputation: 237

how to get location of div and highlight it

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

Answers (1)

Manuel van Rijn
Manuel van Rijn

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

Related Questions