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

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

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

unit testing - How to mock PreferenceManager in Android? -