wrap all objects in the same div based on their key value js code example
Example: jquery loop over elements
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});