Share Pastebin
Guest
Public paste!

Matthew Quinlan

By: a guest | Aug 28th, 2008 | Syntax: JavaScript | Size: 0.34 KB | Hits: 106 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. $MQL('r:customer_profile.request', function(type,msg,datatype,from)
  2. {
  3.       var myJSON={
  4.          person:{
  5.             name:'Joe Mazzola',
  6.             address:'3535 Piedmont Rd',
  7.             city:'Atlanta',
  8.             state:'GA',
  9.             zip:'30305'
  10.             }};
  11.          
  12.       $MQ('r:customer_profile.response',myJSON);    
  13. });