document.write("
"); function createResponsiveListings(data) { var html = '
Featured Listings
'; $.each($.parseJSON(data), function(index, item) { html += '
'; html += '
'; html += '
'; html += '
' + item.Address + '
'; if (item.Status == 'Sold' || item.Status == 'Vendu') { html += '
' + item.Status + '
'; } else { html += '
' + item.Status + '
$' + item.Price + '
'; } html += '
'; }); html += '
'; $('#lswgt').prepend(html); var owl2 = $("#responsive-listing-slider"); owl2.owlCarousel({ autoplay: true, loop: true, autoplayTimeout: 3000, autoplayHoverPause: true, nav: true, margin: 10, dots: false, navText:[ "
", "
" ], items: 1 }); } $(document).ready(function() { createResponsiveListings('[{"Address":"N/A 2795 Kakki Court Marietta GA 30062","ThumbnailUrl":"https://swsite.z13.web.core.windows.net/images/listings/25403/7021722503190345230.webp","Bedrooms":5,"Bathrooms":2.5,"SqFt":"3446","Price":700000,"DisplayId":1555403898,"State":"GA","Status":"Featured","SoldStatus":"","City":"Marietta"},{"Address":"N/A 2795 Kakki Court Marietta GA 30062","ThumbnailUrl":"https://swsite.z13.web.core.windows.net/images/listings/25403/7021722503190345230.webp","Bedrooms":5,"Bathrooms":2.5,"SqFt":"3446","Price":700000,"DisplayId":1555403898,"State":"GA","Status":"Featured","SoldStatus":"","City":"Marietta"}]'); });