jquery-attrs
v1.0.0
Published
Select attributes from jquery collections.
Downloads
2
Maintainers
Readme
$.fn.attrs()
Retrieves all the attributes with their associated values as object.
Example
<div id="elem" data-one="hello" data-two="world" something="else"></div>
$("#elem").attrs()
// -> { 'data-one': "hello", 'data-two': "world", 'something': "else" }
$("#elem").attrs(/^data\-/)
// -> { 'data-one': "hello", 'data-two': "world" }