43 lines
993 B
JavaScript
43 lines
993 B
JavaScript
|
|
$('document').ready(function(){
|
||
|
|
|
||
|
|
|
||
|
|
$(".popup_phone .phone-closer").click(function(event) {
|
||
|
|
event.preventDefault();
|
||
|
|
$('.phnumber').removeClass("f-btn_down");
|
||
|
|
});
|
||
|
|
|
||
|
|
|
||
|
|
$('.phnumber').click(function(event) {
|
||
|
|
$('.phnumber').removeClass("f-btn_down");
|
||
|
|
|
||
|
|
event.preventDefault();
|
||
|
|
|
||
|
|
|
||
|
|
$(this).parents('.s__room').find('.popup_phone').show();
|
||
|
|
$(this).parents('.s__room').find('.popup_phone_bg').show();
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
$(this).parents('.s__room').find('.phnumber').addClass("f-btn_down");
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
$('.one-phnumber').click(function(event) {
|
||
|
|
$('.one-phnumber').removeClass("f-btn_down");
|
||
|
|
event.preventDefault();
|
||
|
|
$('.popup_phone').show();
|
||
|
|
$('.popup_phone_bg').show();
|
||
|
|
$(this).addClass("f-btn_down");
|
||
|
|
});
|
||
|
|
|
||
|
|
$('.popup_phone .phone-closer').click(function(event) {
|
||
|
|
event.preventDefault();
|
||
|
|
$('.phnumber').removeClass("f-btn_down");
|
||
|
|
$('.popup_phone').hide();
|
||
|
|
$('.popup_phone_bg').hide();
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
});
|