• Sign in
  • Sign up 
  • Welcome
  • FAQ
  • Switch to Night Mode
  • Stolen Accounts Recovery 
  • Change Account Password 
  • Vote for Witnesses 
  • Steem Proposals 
  • Developer Portal 
  • Steem Bluepaper 
  • SMT Whitepaper 
  • Steem Whitepaper 
  • Privacy Policy
  • Terms of Service
Homeby Witness Moecki
LoginSign up

Post JSON with JQuery

ektorcaba (51)in #steemcodeit • 7 years ago (edited)

Send JSON POST data with JQuery:

 $.ajax
    ({
        type: "POST",
        url: 'example.php',
        dataType: 'json',
        async: false,
        contentType: 'application/json',
        data: JSON.stringify({ "myid": 1 , "mydata" : "Hello World!" }),
        success: function () {
                    console.log("Success"); 
        }
    });
        
#javascript #jquery #steemdev
7 years ago in #steemcodeit by ektorcaba (51)
$0.00
    2 votes
    • + ektorcaba
    • + rosamariaacosta
    Reply 0