function getMerItemsAlpha(cont,letter) { $(cont).html('

Loading...

') $.ajax({ url: '/shop/merchant/getAlphaXML?alphaIndex='+letter, success: function(data) { htm = '
'; $(data).find('Merchant').each(function() { htm += '
' + '' + '
' + '
'+ '
'+ ''+ '
'+ ''+ '' + $(this).attr('cashback') +''+ '
'+ '
' + '

' + $(this).attr('description') + '

' + ''; }); htm += '
'; $(cont).html(htm); } }); }