Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
  <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<!--[if IE]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
  article, aside, figure, footer, header, hgroup, 
  menu, nav, section { display: block; }
</style>
</head>
<body>
  <p id="hello"></p>
  <form name='theform'><input  name='thehidden' type='hidden' value='My Hidden Value'/></form>
</body>
</html>
 
$.getJSON('http://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?',
  {
    tags: 'cat',
    tagmode: 'any',
    format: 'json'
  },
  function(data) {
   alert('hello world from flicker');   
  });
     
$.getJSON('http://api.twitter.com/1/statuses/user_timeline.json?',
  {
      screen_name: "samajshekhar",
      count: '5',
  },
 function (data) {
      alert('hello world from twitter');
  });   
      
$.getJSON('http://graph.facebook.com/samajshekhar/feed',
     {limit:'3'},
 function () {
     alert('hello world facebook');
 });
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers