/********************************************* * room.js *********************************************/ /* ------------------------------------------- * @noConflict ------------------------------------------- */ jqNew = jQuery.noConflict(); if($ === undefined){ $ = jQuery; } j$ = jQuery || jqNew; /* ------------------------------------------- * @init ------------------------------------------- */ j$(function(){ j$(window).on('load orientationchange resize', function(){ var wid = j$(window).width(); j$('.section02 .serviceWrap dl dt').css('height','auto'); if( wid > 750 ){ var maxHeight = 0; j$('.section02 .serviceWrap dl dt').each(function(){ if (j$(this).height() > maxHeight) { maxHeight = j$(this).height(); } }); j$('.section02 .serviceWrap dl dt').height(maxHeight); } }); });