var _cityAdTimer = null; function loadCityAds(city_id, user_id, pg) { var post_data = "user_id="+user_id; post_data += "&city_id="+city_id; post_data += "&pg="+pg; $.ajax({ type: "POST", url: "/assets/ajax/cityad_loadlist.php", async: true, data: post_data, success: function(xml){ var response_html = ""; var my_id = 0; response_html += '
\
'+$(xml).find('page_title').text()+'
'; var row_cnt = 0; $(xml).find('messages').find('message').each(function() { var row_class = (row_cnt % 2 == 0) ? "even_row" : "odd_row"; response_html += '\ \ '; if (my_id != 0 && my_id == $(this).find('user_id').text()) { response_html += ''; } else { response_html += ''; } response_html += '\ \ \ \ \ \ \ \ \ \ \
'+$(this).find('title').text()+'edit delete
'; row_cnt++; }); response_html += '
'; $(".ad_list_container").html(response_html); $(".frm_edit_city_ad").bind("submit",function() { saveCityAd($(this).attr("id")); return false; }); } }); } $(document).ready(function() { $(".view_city_ad").live("click",function() { var ad_id = $(this).attr("id"); $("#tbody_view_city_ad_"+ad_id).toggle(); $('#tbody_edit_city_ad_'+ad_id).hide(); }); $(".city_post_edit").live("click",function() { var ad_id = $(this).attr('id'); $('#tbody_view_city_ad_'+ad_id).hide(); $('#tbody_edit_city_ad_'+ad_id).toggle(); }); $(".city_post_delete").live("click",function() { var ad_id = $(this).attr("id"); if (confirm("This will permanently delete your ad. Are you sure?")) { //delete ad } }); });