Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 611 Bytes

no-text.md

File metadata and controls

31 lines (23 loc) · 611 Bytes

no-text

Disallows the .text method and $.text utility. Prefer Node#textContent.

📋 This rule is enabled in plugin:no-jquery/all.

Rule details

❌ Examples of incorrect code:

$.text();
$( 'div' ).text();
$div.text();
$( 'div' ).first().text();
$( 'div' ).append( $( 'input' ).text() );

✔️ Examples of correct code:

text();
[].text();
div.text();
div.text;

Resources