テクノロジー
(103)
(103)
The field is required.'); $("#err_textbox").addClass('error'); return true; } return false; } function isErrEmail(str){ $("#err_emailbox p").remove(); $("#err_emailbox").removeClass('error'); var _textbox = $.trim(str); if(_textbox.match(/^[ \r\n\t]*$/)){ $("#err_emailbox").append('
The field is required.'); $("#err_emailbox").addClass('error'); return true; } if(!_textbox.match(/.+@.+\..+/g) || _textbox.indexOf('.@') != -1){ $("#err_emailbox").append('
The e-mail address entered is invalid.'); $("#err_emailbox").addClass('error'); return true; } return false; } }); /** Close widget*/ $(document).on('click', function(e) { if(!$(e.target).closest('.html-embed').length){ var disp = $('.fab-button').css('display'); if(disp == 'block'){ $('.html-embed').click(); } } }); $('.fab-button').click(function(){ $('.html-embed').click(); }) /** Popup */ // $(document).ready(function () { // // 画像をクリックしたら指定のURLに遷移 // $('#bdd-popup-image').click(function () { // window.location.href = "https://bdd.btrax.com/"; // }); // // // 15秒後にポップアップを表示 // setTimeout(function () { // $('#bdd-popup').fadeIn(); // $('#bdd-overlay').fadeIn(); // }, 8000); // // // 閉じるボタンのクリックイベント // $('#bdd-banner-close-btn').click(function () { // $('#bdd-popup').fadeOut(); // $('#bdd-overlay').fadeOut(); // }); // });