Guest

Matthew Quinlan

By: a guest on Aug 28th, 2008  |  syntax: JavaScript  |  size: 0.34 KB  |  hits: 380  |  expires: Never
download  |  raw  |  embed  |  report abuse
This paste has a previous version, view the difference. Copied
  1. $MQL('r:customer_profile.request', function(type,msg,datatype,from)
  2. {
  3.       var myJSON={
  4.          person:{
  5.             name:'Joe Mamma',
  6.             address:'3535 Piedmont Rd',
  7.             city:'Atlanta',
  8.             state:'GA',
  9.             zip:'30305'
  10.             }};
  11.          
  12.       $MQ('r:customer_profile.response',myJSON);    
  13. });