Posts by Victor Teixeira • 39 points
1 post
-
3
votes4
answers3901
viewsQ: Question about each() in Jquery
Because the code below only returns me the first "104 104" and not "104 106" $(function(){ $('#sortable li').each(function(){ console.log($('#sortable li').attr('id')); }); }); <script…