Guest User

Untitled

a guest
Jul 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $.ajax({
  2. url: url,
  3. type: 'post',
  4. data: {
  5. view_display_id: v_display,
  6. view_name: v_name,
  7. // view_args: {}, // your views arguments
  8. view_args: v_args,
  9. },
  10. dataType: 'json',
  11. success: function (response) {
  12. if (response[1] !== undefined) {
  13. return response[1].data; // do something with the view
  14. }
  15. }
  16. });
Add Comment
Please, Sign In to add comment