Product Engineer, CTO & a Beer Enthusiast
Experiments, thoughts and scripts documented for posterity.
Dec, 2013
A simple tag cloud plugin that I built in JQuery (1.5kb in size uncompressed). https://github.com/karthik20522/jqTagCloud
<div id="panel">
<a count="38" href="#">Horizontal</a>
<a count="76" href="#">FullLength</a>
<a count="14" href="#">Japan</a>
<a count="38" href="#">Toyota Stadium</a>
<a count="59" href="#">Toyota</a>
</div>
<script>
$("#panel").jqTagCloud({ maxSize: 30, minSize: 12 });
</script>
maxSize: Maximum font size to use < br >
minSize: Minimum font size to use < br >
$("#panel").jqTagCloud({maxSize: 30, minSize:12 });
$("#panel2").jqTagCloud({maxSize: 35, minSize:10 });