Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $.ajax({
  2. url: 'url',
  3. dataType: 'json',
  4. type: 'post',
  5. contentType: 'application/json',
  6. data: JSON.stringify( { parameters } ),
  7. processData: false,
  8. success: function( data ){
  9. console.log(data); <- this log all objects, i want the info inside the objects
  10. },
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement