Hinako Sato
Marketing Specialist
A LITTLE ABOUT ME
A young professional with a primary focus in marketing, providing branding identity, localization, and marketing strategy to various Tokyo and San Francisco-based companies. I am passionate about technology, branding, startups, and design. Running and Pilates are my mental and physical meditation!
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();
// });
// });