# is-jquery-obj **Repository Path**: mirrors_DevExpress/is-jquery-obj ## Basic Information - **Project Name**: is-jquery-obj - **Description**: Checks if the given object is a jQuery object - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-30 - **Last Updated**: 2026-01-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # jQuery Object Identification Provides a function that checks if the given object is a jQuery object. ## Usage ```js const isJQueryObj = require('is-jquery-obj'); if(isJQueryObj($('#element'))) console.log('$ is a jQuery object.'); if(!isJQueryObj({ foo: 'bar' })) console.log('A regular JavaScript object is not a jQuery object.'); ```