JavaScript: Is there an element geometry changed event? -


there resize dom event, generic elements can't find event fired when position of element changed. i'd have event fired whenever geometry of element changed. can mozilla specific, because write firefox add-on.

edit: or there way pin element 1 works, no matter crazy stylesheets might used (so 1 on top of other)?

edit: or there way pin element 1 works, no matter crazy stylesheets might used (so 1 on top of other)?

you can set bunch of !important rules, take priority (unless else uses !important, rare):

.pinned {     position : absolute !important;     top      : 0px      !important;     right    : 0px      !important;     bottom   : 0px      !important;     left     : 0px      !important; } 

Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -