This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************************************** | |
* jQuery-less version of Chris Coyier's | |
* Value Bubbles for Range Inputs | |
* http://css-tricks.com/value-bubbles-for-range-inputs/ | |
**********************************************************/ | |
function modifyOffset() { | |
var el, newPoint, newPlace, offset, siblings, k; | |
width = this.offsetWidth; | |
newPoint = (this.value - this.getAttribute("min")) / (this.getAttribute("max") - this.getAttribute("min")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="ibw"> | |
<div class="ib">inline block</div> | |
<div class="ib">inline block</div> | |
<div class="ib">inline block</div> | |
</div> |
NewerOlder