Advertisement
verygoodplugins

Untitled

Nov 8th, 2016
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     // Populate realtors city list
  2.  
  3.     if($('#realtors-city-list').length) {
  4.  
  5.  
  6.         var data = {
  7.             'action'     : 'get_realtors_city_list',
  8.             'zip_code'   : $('#realtors-city-list').attr('data-zip-code')
  9.         };
  10.  
  11.         $.post(maindata.ajaxurl, data, function(response) {
  12.  
  13.             $('#realtors-city-list').html(response);
  14.  
  15.         });
  16.  
  17.  
  18.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement