Skip to content

Commit f1bba5c

Browse files
committed
Core: Warn and fill jQuery.nodeName()
Fixes #246 Closes #301
1 parent 42f1d9e commit f1bba5c

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

src/core.js

+6
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,9 @@ migrateWarnProp( jQuery.expr, "filters", jQuery.expr.pseudos,
100100
"jQuery.expr.filters is deprecated; use jQuery.expr.pseudos" );
101101
migrateWarnProp( jQuery.expr, ":", jQuery.expr.pseudos,
102102
"jQuery.expr[':'] is deprecated; use jQuery.expr.pseudos" );
103+
104+
// Prior to jQuery 3.2 there were internal refs so we don't warn there
105+
if ( jQueryVersionSince( "3.2.0" ) ) {
106+
migrateWarnFunc( jQuery, "nodeName", jQuery.nodeName,
107+
"jQuery.nodeName is deprecated" );
108+
}

test/core.js

+10
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,16 @@ QUnit.test( "jQuery.holdReady (warn only)", function( assert ) {
301301
} );
302302
} );
303303

304+
QUnit[ jQueryVersionSince( "3.2.0" ) ? "test" : "skip" ]( "jQuery.nodeName", function( assert ) {
305+
assert.expect( 2 );
306+
307+
expectWarning( assert, "jQuery.nodeName", function() {
308+
var div = document.createElement( "div" );
309+
310+
assert.equal( jQuery.nodeName( div, "div" ), true, "it's a div" );
311+
})
312+
});
313+
304314
TestManager.runIframeTest( "old pre-3.0 jQuery", "core-jquery2.html",
305315
function( assert, jQuery, window, document, log ) {
306316
assert.expect( 1 );

warnings.md

+6
Original file line numberDiff line numberDiff line change
@@ -218,3 +218,9 @@ See jQuery-ui [commit](https://github.com/jquery/jquery-ui/commit/c0093b599fcd58
218218
**Cause:** The `.hover()` method is a shorthand for the use of the `mouseover`/`mouseout` events. It is often a poor user interface choice because it does not allow for any small amounts of delay between when the mouse enters or exits an area and when the event fires. This can make it quite difficult to use with UI widgets such as drop-down menus. For more information on the problems of hovering, see the [hoverIntent plugin](http://cherne.net/brian/resources/jquery.hoverIntent.html).
219219

220220
**Solution:** Review uses of `.hover()` to determine if they are appropriate, and consider use of plugins such as `hoverIntent` as an alternative. The direct replacement for `.hover(fn1, fn2)`, is `.on("mouseenter", fn1).on("mouseleave", fn2)`.
221+
222+
### JQMIGRATE: jQuery.nodeName() is deprecated
223+
224+
**Cause:** This public but never-documented method has been deprecated as of jQuery 3.2.0.
225+
226+
**Solution:** Replace calls such as `jQuery.nodeName( elem, "div" )` with a test such as `elem.nodeName.toLowerCase() === "div"`.

0 commit comments

Comments
 (0)