Advertisement
oquidave

ajax_call

Aug 20th, 2011
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. //return array of checked contacts
  2. contact_id_arr = get_checked();
  3. //send ajax call to server
  4.  
  5. $.get(
  6. "../bi/contacts.php",
  7. {option:'delete_nos', ids:contact_id_arr},
  8. function() {
  9. $("#action_notification").html("Contacts have been deleted");
  10. },
  11. "html"
  12. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement