Possible Duplicate:
Auto-size dynamic text to fill fixed size container
If container contains just a plain text with no child element, then the following code is a working solution:
(function($) {
$.fn.textfill = function(options) {
return this.each(function() {
var text = $(this).text();
$(this).text('');
var container = $('<span />').text(text).appendTo($(this));
var min = 1, max = 200, fontSize;
do {
fontSize = (max + min) / 2;
container.css('fontSize', fontSize);
var multiplier = $(this).height()/container.height();
if (multiplier == 1) { min = max = fontSize}
if (multiplier > 1) { min = fontSize}
if (multiplier < 1) { max = fontSize}
} while ((max - min) > 1);
fontSize = min;
if ($(this).width() < container.width()) {
min = 1;
do {
fontSize = (max + min) / 2;
container.css('fontSize', fontSize);
var multiplier = $(this).width()/container.width();
if (multiplier == 1) { min = max = fontSize}
if (multiplier > 1) { min = fontSize}
if (multiplier < 1) { max = fontSize}
} while ((max - min) > 1);
fontSize = min;
}
container.remove();
$(this).text(text);
var minFontSize = options.minFontPixels;
var maxFontSize = options.maxFontPixels;
$(this).css('fontSize',
minFontSize && (minFontSize > fontSize) ?
minFontSize :
maxFontSize && (maxFontSize < fontSize) ?
maxFontSize :
fontSize);
});
};
})(jQuery);
See demo here.
But what if container contains children let's say:
<div><span class="c1">text1</span>main text<span class="c2">text2</span></div>
and we want to autosize also children, keeping text same high as "main text" that is a text node? Children might have a different font-family or other parameters.
How can be the algorithm above improved to get such results?