service.js 504 B

1234567891011121314151617181920
  1. $(function(){
  2. var h=$(".confirmArea").height();
  3. $(".confirmMobile").css('line-height',(h/2)+'px').css('height',(h/2)+'px');
  4. var w=$(".confirmArea").width();
  5. console.log(w);
  6. $(".confirmBtnArea p").width(w/2);
  7. $(".confirmBtnArea p").css('line-height',(h/2-1)+'px').css('height',(h/2-1)+'px');
  8. $(".confirm_cancel").click(function(){
  9. $(".confirmArea").hide();
  10. $(".shadow").hide();
  11. });
  12. $(".confirm_confirm").click(function(){
  13. window.location.href='tel:'+mobile;
  14. });
  15. });