jQuery Find any element that contain data attribute -
I want to get value from It could be on Do I find any element with I do not think this is correct data-supported , I do not know where this feature will be It is possible.
ul , or
select or even
div
data-supported and return its value to jQuery?
dataSupported = $ ('* [Data Supported]');
$ ('* [data-supported]') Return all elements that have data-supported features .... If you want the value of the attribute,
var data is supported = $ ('* [Data-Supported]'). ('Supported')
Comments
Post a Comment