We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Just including io.jsonp activates it. See How to include for more details. See jsonp for the full documentation.
io.jsonp
io.jsonp('/url').then(function (value) { console.log('Got:', value); }); io.jsonp('/url', {q: 1}).then(function (value) { console.log('Got:', value); });
io.jsonp({ url: '/url', callback: 'cb' // new callback name }).then(function (value) { console.log('Got:', value); });