Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<div class="thumbnail">
<p>content</p>
</div>
  <div class="thumbnail">
<p>content</p>
</div>
  <div class="thumbnail">
<p>content</p>
</div>
  <div class="thumbnail">
<p>content</p>
</div>
  <div class="thumbnail">
<p>content</p>
</div>
</body>
</html>
 
$(document).ready(function () {
  $('.thumbnail').css({ 
    'margin-top':  Math.floor(Math.random() * 100 - 50) + "px"
        'margin-left':  Math.floor(Math.random() * 100 - 50) + "px"
  });
});
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers