Сделал вот так: и не работает, попросту не меняется класс. (вёрстка должна быть такая, её менять нельзя, ну если конечно не критично совсем)
<div class="wrap">
<div class="fix">
<div class="a">
<a class="a" href="#"><img src="img/call.png"></a></div>
<a href="https://vk.com/fust_magaz" title="Наш паблик в вк."><img src="img/vk.png"></a></div>
</div>
<div class="form">
</div>
$('a.a').click(function(){
$('div.form').toggleClass('fact');
});
.wrap {
position: fixed;
z-index: 5;
left: 0px;
top: 0px;
height: 100%;
width: 3%;
background: url(img/backcall.png);
}
.wrap .fix {
position:
width: 100%;
height: 7%;
margin-top: 700%;
}
.wrap .fix a {
height: 100%;
widht: auto;
}
.wrap .fix a > img {
position: relative;
width: 100%;
padding-top: 10px;
}
.form {
position: fixed;
width: 0px;
overflow: hidden;
}
.fact {
display: block;
overflow: hidden;
width: 10%;
left: 3%;
top: 0px;
background: url(img/backcall.png);
}