In most tables or something that has many rows of data, I saw that when something is edited, this row turns yellow for a while, and then after a while returns to its normal state.
I have a data table with about 500 rows. The user can click edit anything, edit this line on a new page and return to the page with all 500 lines. When the user returns to the page with 500 lines, I want to make the last edited line selection for a while.
I know that we can use addCss, but how can I remove css after a while?
can anyone who did this suggest a way or set an example?
I am doing this, but getting a JS error:
$('#'+test).effect("highlight", {}, 3000);
where '# '+testis idatr
source
share