xjamundx/HTML5-Meter-Shim
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
HTML5 METER SHIM By Jamund Feguson (@xjamundx) And Rob Middleton (@rob__ot) Mostly stolen from: https://gist.github.com/667320 Dependencies: - jQuery Usage: // for normal stuff $(document).ready(function() { $("meter").meterShim() }) // for ajax requets $.get("/my/fancy/meter", function(meterHtml) { $(body).append(meterHtml) // this is the only way it would work for me, bah setTimeout(function() { $("meter").meterShim() }, 0) })