Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 24th, 2012  |  syntax: None  |  size: 0.39 KB  |  hits: 20  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Data variable in jquery ajax function
  2. $(document).ready(function() {
  3.     $('.infor').click(function () {
  4.      var datasend = $(this).html();
  5.         $.ajax({
  6.             type: 'POST',
  7.             url: 'http://domain.com/page.php',
  8.             data: 'im_id='+datasend',
  9.             success: function(data){
  10.                 $('#test_holder').html(data);
  11.             }
  12.             });
  13.     });
  14. });