Есть
index.html с якорными ссылками при переходе по которым добавляется атрибут
target
для активного блока на другой странице и он подсвечивается цветом , как удалить этот атрибут через 1 сек ?
код 1 стр index.html :
<a href="blog.html#a">Статья 1</a>
<a href="blog.html#b">Статья 2</a>
<a href="blog.html#c">Статья 3</a>
<a href="blog.html#d">Статья 4</a>
это blog.html :
<div id="a" class="post">
<div class="date">
<p class="numeric">23</p>
<span class="month">august</span>
</div>
<h4>Lorem Ipsum text 1</h4>
<p class="text"></p>
<a href="#" class="read">read more</a>
</div>
<div id="b" class="post">
<div class="date">
<p class="numeric">20</p>
<span class="month">july</span>
</div>
<h4>Lorem Ipsum text 2</h4>
<p class="text"></p>
<a href="#" class="read">read more</a>
</div>
<div id="c" class="post">
<div class="date">
<p class="numeric">2</p>
<span class="month">may</span>
</div>
<h4>Lorem Ipsum text 3</h4>
<p class="text"></p>
<a href="#" class="read">read more</a>
</div>
<div id="d" class="post">
<div class="date">
<p class="numeric">19</p>
<span class="month">may</span>
</div>
<h4>Lorem Ipsum text 4</h4>
<p class="text"></p>
<a href="#" class="read">read more</a>
</div>
это подсветка блока при переходе на неё через якорь :
.post:target{
background:rgba(231, 234, 35,.1);
}
как удалить attribut:target у .post через 1 сек? т.е фактически убрать подсветку у блока