#931
[UI] Just Gauge & JQuery
Gauge sample :
<div id="gaugeA" class="200x160px gaugeToRefresh" val="87.5" title="CPU Idle (%)"></div>
<script type="text/javascript"> jq(".gaugeToRefresh").each(function() { new JustGage({ id: jq(this).attr('id'), value: jq(this).attr('val'), min: 0, max: 100, title: jq(this).attr('title') }); jq(this).removeClass("gaugeToRefresh"); jq(this).addClass("gaugeLoaded"); }); </script>
Result :
Comments are currently closed.