Socket
Socket
Sign inDemoInstall

@creately/inner-text

Package Overview
Dependencies
1
Maintainers
5
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @creately/inner-text

Cross Browser `innerText` function based on innerHTML with replacements.


Version published
Weekly downloads
6
increased by200%
Maintainers
5
Created
Weekly downloads
 

Readme

Source

inner-text

Cross Browser innerText function based on innerHTML with replacements.

innerText is a function, that is not standardized, but Chrome and IE support. Firefox doesn't.

There is different ways to implement the innerText functionality.

You can get a selection window.getSelection(), select all the elements selection.selectAllChildren(el) and call selection.toString().

The problem is, that it is based on the user selection, and you can mess it up.

If you want to go this route: inner-text-shim is for you.

Otherwise this function can be helpful.

install

npm install @creately/inner-text

usage

All innerText does is get the el.innerText from the element, even when the browser does not support it. You can pass an html element or a string with html as input to this function. you can't set the innerText with this module.

var innerText = require('inner-text');

// get the dom element with plain javascript
var el = document.querySelector('body');
// or with jquery:
el = $('body')[0];

// set the innerHTML (only for this example)
el.innerHTML = 'hello<br/>world';

var text = innerText(el)
assert.equal(text, 'hello\nworld');

You can specify the tags to replace with


el.innerHTML = 'hello<p>world</p>';
var text = innerText(el)
assert.equal(text, 'hello\nworld');

el.innerHTML = 'hello<div>world</div>';
var text = innerText(el, { tags: { div : '\n' }} )
assert.equal(text, 'hello\nworld');

el.innerHTML = 'hello<p>world</p>';
var text = innerText(el, { tags: { p : '\n' }})
assert.equal(text, 'helloworld');

el.innerHTML = 'hello<p>world</p>hi<p>there</p>';
var text = innerText(el, { tags: { p : '\n', div : '\n\n' }})
assert.equal(text, 'hello\nworldhi\n\nthere');

test

npm test

license

MIT

author

Andi Neck | @andineck

Keywords

FAQs

Last updated on 04 Mar 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc