Sunday, October 18, 2015

punctuation on left when direction: rtl

When using direction: rtl the puctuation is on the left instead of the right.
http://stackoverflow.com/a/20799360/806777

<div style='direction: rtl;'>Hi!</div>

!Hi

Tuesday, June 9, 2015

Tab to Search

http://www.opensearch.org/

calculate height of a truncated element in JS

http://stackoverflow.com/a/12752716/806777

...
// get current height
currentHeight = $box.height();

// get height with auto applied
autoHeight = $box.css('height', 'auto').height();

// reset height and revert to original if current and auto are equal
$box.css('height', currentHeight);
...