lsn

0.0.9 • Public • Published

lsn

(c)Bumblehead, 2013 MIT-license

Overview:

Add and remove listener events on elements in the document.

  • lsn( elem, event, fn );
  • lsn.rm( elem, event, fn );

Caveats:

Research reveals problems with all listener-wrapper scripts available on the internet. None of them are perfect. The script demonstrated on msdn here is the best one I've seen. The 'terms and conditions' around msdn's sample code, however, are prohibitive and the author has not released a public version of the samples.

David Mark owns the best host method checking techniques. This is his: /^(?:function|object|unknown)$/.test(typeof object[methodname]). I wanted to avoid using it but there's no other reliable technique for finding if attachEvent is available on document.documentElement. typeof document.documentElement.attachEvent returns object or function in different JScript environments.

One might consider using DOM0 'onclick'-style event listeners exclusively but not when seeing that it is dramtically slow compared to addEventListener. Who wants slow response times for click events? not me.

Due to the above considerations, this script only provides a primitive wrapper around addEventListener and attachEvent. You may want a more comprehensive solution. 'onclick'-style event listeners are not supported. If addEventListener or attachEvent are not supported by the host environment this script will not handle the event for you -prepare your application to degrade nicely.

Additionally:

  1. no support for 'capturing phase' in IE (capturing an event: when an event is bubbling up, elements queued to 'capture' the event will not fire once the event has been captured.)
  2. order of handler execution is inconsistent. most browsers will FIFO (first in first out), but mshtml will LIFO.
  3. error handling for events passed to certain objects is not anticipated. It may be OK to send these methods a window object or it may not be -no error handling for this.
  4. the this is not normailized in any way.
  5. no attempt is made to solve your memory leak issues.

Because this script does not handle edge cases, it is small. It also memoizes the supported listener method which often makes it faster.


Install:

lsn may be downloaded directly or installed through npm.

  • npm
$ npm install lsn
  • Direct Download
$ git clone https://github.com/iambumblehead/lsn.git

Test:

Tests are not automated and are performed by loading a document in the browser and using the browser console.

  • load test/index.html in your browser and run tests from the console.

License:

scrounge

(The MIT License)

Copyright (c) 2013 Bumblehead chris@bumblehead.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.9
    5
    • latest

Version History

Package Sidebar

Install

npm i lsn

Weekly Downloads

5

Version

0.0.9

License

MIT

Last publish

Collaborators

  • bumblehead