Is it possible to change the source of an image on hover and then back to the original source? For example, the name of the file always remains the same, but the number changes - 1 for the original and 2 for the hover. Thank you for any advice.
Code:
<ul class="nav navbar-nav">
<li><a href="#">Featured</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Meet ATS<b class="caret"></b></a>
<ul class="dropdown-menu meet-ats-top">
<li><a href="#"><img src="/images/google1.png"></a></li>
<li><a href="#"><img src="/images/in1.png"></a></li>
<li><a href="#"><img src="/images/youtube1.png"></a></li>
<li><a href="#"><img src="/images/facebook1.png"></a></li>
<li><a href="#"><img src="/images/twitter1.png"></a></li>
</ul>
</li>
</ul>