Skip to content
Advertisement

How to pass input element into a function to get data attribute

I am working on the below demo. Why am I not able to pass the $("#sample") into a function like below functions?

JavaScript

Here is the demo:

JavaScript
JavaScript

As you can see I am getting:

Uncaught TypeError: elem.data is not a function

and:

Uncaught TypeError: this.data is not a function

on both formats of functions.

Advertisement

Answer

You’ve to pass the object like :

JavaScript

The this keyword doesn’t refer to the input since you’re using it without a specific context.

You could use the .apply() method instead to set this to $("#sample") within the function’s scope, like :

JavaScript

JavaScript
JavaScript
Advertisement