esto he cortado con tijeras en mi página:jQuery: value.attr no es una función
$('#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'));
});
});
Y cuando se ejecuta, me sale:
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'));
¿qué estoy haciendo mal aquí? Estoy tratando de obtener el valor del elemento div.cat_id.
Gracias un montón, ayudado yo para entender mi problema –