<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="date=no">
<meta name="format-detection" content="address=no">
<meta name="format-detection" content="email=no">
.eyes {
background-image: url(img/Icon/eye-opened.png);
}
.eyes-closed {
background-image: url(img/Icon/eye-closed.png);
}
$(document).ready(function() {
$('.eyes').click(function() {
$(this).toggleClass('eyes-closed');
});
});