javascript check if variable is a jquery object

Solutions on MaxInterview for javascript check if variable is a jquery object by the best coders in the world

showing results for - "javascript check if variable is a jquery object"
Edoardo
07 Jan 2021
1if (obj instanceof jQuery){
2    console.log('object is jQuery');
3}