jerin john
jerin john

Reputation: 199

ajax call in jquery

I have a ajax call which i need to call with some specific parameter attached to it such that there is parameter field in net section in firebug.

and the parameter is not a data but a type like type, = copy must be attached to the call

Upvotes: -1

Views: 67

Answers (1)

Bharat Chodvadiya
Bharat Chodvadiya

Reputation: 1650

You want to use like this and pass data..

jQuery.ajax({
          type: "POST",
          url: "example.php",
          data: { identityid:0,userid:"<?php echo $user_id;?>" },
          success: function() {       


                  }
           }); 

Upvotes: 1

Related Questions