$(window).load(function(){
var windowWidth = $(window).width(),
targetWidth = 800
$targetTag = $('.original_option-wp');
var functionJs = function (){
windowWidth = $(window).width();
if($targetTag.length){
if (windowWidth >= targetWidth) {
$targetTag.find('.table-wp > div, .balloon-wp > div').autoHeight({ height:'height', reset:'reset'});
} else {
$targetTag.find('.table-wp > div, .balloon-wp > div').css('height', 'auto');
}
}
}
functionJs();
$('.plan-4tabs.pc').find('a').on('click', function(){
functionJs();
return false;
});
//リサイズ時ã®å‡¦ç†
$(window).resize(function() {
var timer = false;
if (timer !== false) { clearTimeout(timer); }
timer = setTimeout(function() {
functionJs();
}, 100);
});
});