UNPKG

xmlplus

Version:

A JavaScript framwork for developing projects efficiently.

18 lines 652 B
xmlplus("xp", function (xp, $_, t) { $_().imports({ Example: { css: "#example { position: relative; }", xml: "<div id='example'>\ <p id='text'>hello,world</p>\ </div>", map: { nofragment: true }, fun: function (sys, items, opts) { var offset = sys.text.offset(); console.log(offset.top, offset.left); // 16 8 sys.text.offset({top:100, left:0}); offset = sys.text.offset(); console.log(offset.top, offset.left); // 100 0 } } }); });