Revision 626437386535 () - Diff

Link to this snippet: https://friendpaste.com/12G0NEe1Aiy7RDZZu2VGle
Embed:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
jQuery.fn.valign = function() {
$(this)
.wrapInner('<div class="valign-box"></div>')
.css("position", "relative");

xH = $(this).children('.valign-box').height();
$(this).children('.valign-box')
.css({
"position" : "absolute",
"height" : xH,
"top" : "50%",
"margin-top" : 0-(xH/2)
});
};
$(document).ready(function() {
$("#viewer ul li").valign();
});