How to Get all attributes of an element using jQuery
I am trying to go through an element and get all the attributes of that element to output them, for example an tag may have 3 or more attrib...

https://iskablogs.blogspot.com/2014/05/how-to-get-all-attributes-of-element.html
I am trying to go through an element and get all the attributes of that element to output them, for example an tag may have 3 or more attributes, unknown to me and I need to get the names and values of these attributes. I was thinking something along the lines of:
$(this).attr().each(function(index, element) {
var name = $(this).name;
var value = $(this).value;
//Do something with