Disallows the .text
method and $.text
utility. Prefer Node#textContent
.
📋 This rule is enabled in plugin:no-jquery/all
.
❌ 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;