1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
function getById(id) { return !id ? null : document.getElementById(id); }
function getAttr(id, k) { if (id) { var v = document.getElementById(id).getAttribute(k) return v; } }
function setAttr(el, k, v) { if (el) { el.setAttribute(k, v); } }
function getCss(el, k) { if (el) { if (el.style[k]) { return el.style[k]; } return null; } }
function setCss(el, k, v) { if (el) { if (!el.style || el.style.length == 0) { el.style = {}; } el.style[k] = v; } }
|