I searched by google but I found that much I can\'t overview it all, so I need your experience:
I need to highlight a text for 1 second. For example a simple \"blink\"-e
var h = document.getElementById("highlight");
window.onload = function () {
// when the page loads, set the background to red
h.style.backgroundColor = "#f00";
// after 1 second (== 1000ms)
window.setTimeout(function () {
// ...revert this, use the original color
h.style.backgroundColor = "";
}, 1000);
};