Edit on github

Ajax request to bins

JS Bin supports CORS and a number of different ways to access your bin’s content using Ajax techniques.

Response types

  1. Full HTML output (including JS Bin edit link and live reload scripts)
  2. Full HTML output (excluding JS Bin edit link etc)
  3. Single panel output (using .js or .css)
  4. JSON for the JavaScript panel
  5. JSON bin object

Example code

Below is a bin that can be tweaked to change the request it’s making so you can see, live, what the impact of that change is:

Ajax responses from JS Bin

The example includes prepared ajax requests that are commented out. If you change the line from:

/* 3. get the JavaScript panel as JSON
url: '//jsbin.com/xuyis/1.json',
dataType: 'json',
//*/

And add a leading / to the comment, the code will run:

//* 3. get the JavaScript panel as JSON
url: '//jsbin.com/xuyis/1.json',
dataType: 'json',
//*/

Try it out and see how the result changes.

TODO: extend this article to show individual ajax requests.

❤️ Love JS Bin?

Support this open source project today, and help it continue to run for another decade 🎂