$(window).load(function(){
var windowWidth = $(window).width(),
targetWidth = 801;
//繰り返ã—処ç†
var functionJs = function (){
windowWidth = $(window).width()
if (windowWidth >= targetWidth) {
/* pc */
$('.option-list').find('li .midasi3').autoHeight({ column:3, height:'height', reset:'reset'});
$('.option-list').find('li p').autoHeight({ column:3, height:'height', reset:'reset'});
} else {
/* smt */
$('.option-list').find('li .midasi3').css('height', 'auto');
$('.option-list').find('li p').css('height', 'auto');
}
}
functionJs();
$(window).resize(function() {
var timer = false;
if (timer !== false) { clearTimeout(timer); }
timer = setTimeout(function() {
functionJs();
}, 100);
});
});