Ich habe dies auf meiner Seite ausgeschnitten:
$('#category_sorting_form_save').click(function(){
var elements = $("#category_sorting_elements > div");
$.each(elements, function(key, value) {
console.info(key," : ",value);
console.info("cat_id: ",value.attr('cat_id'));
});
});
Und wenn es ausgeführt wird, bekomme ich:
0 : <div class="dragable" cat_id="6" value="" style="opacity: 1;">
value.attr is not a function
console.info("cat_id: ",value.attr('cat_id'));
Was mache ich hier falsch? Ich versuche, den Wert des div.cat_id-Elements abzurufen.
quelle