Есть функция по клику, надо сделать обратную функцию по повторному клику
window.onload=function() {
// district
$("#district").click(function() {
$(this).css("background-color", "rgba(255, 255, 255, 0.81)")
$("#district_sub").css({
height: 150,
opacity: 1
});
$(this).children(".select_triangle").css({
transform: 'rotate(' + 180 + 'deg)'
});
});
}
Последний раз редактировалось Mastems, 04.08.2015 в 21:03.
|