Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 27th, 2012  |  syntax: None  |  size: 0.34 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. POST json data using form
  2. {"method":"like","data":{"type":1,"id":123}}
  3.        
  4. <script>
  5. jQuery(document).ready(function(){
  6. jQuery("#form").submit();
  7. });
  8. </script>
  9.        
  10. $(document).ready(function(){
  11.     $.post("script.php", { <?php echo $string; ?> },
  12.        function() {
  13.          alert("Your test.php page received the string!);
  14.        });
  15. });