Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.9.1.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div id="title"></div>
  <div id="noun"></div>
  <div id="_id"></div>
  <div id="owner_id"></div>
</body>
</html>
 
$(function() {
  data={
    title:"title value",
    noun:"noun value",
    _id:"_id value",
    owner_id:"owner_id value"
  };
  
  $.map(data, function(value, key) {
    $("#" + key).html(value);
  });
});
Output

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

Dismiss x
public
Bin info
pboutinpro
0viewers