fixHeight.js - HTML要素の高さを揃えるjQueryプラグイン @� � ��(� /* * fixHeight - jQuery Plugin * http://www.starryworks.co.jp/blog/tips/javascript/fixheightjs.html * * Author Koji Kimura @ STARRYWORKS inc. * http://www.starryworks.co.jp/ * * Licensed under the MIT License * */ (function($){ var isInitialized = false; var parents = []; var textHeight = 0; var $fontSizeDiv; $.fn.fixHeight = function() { this.each
