Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<script>
var drawHorizondalLine = function(x1,y1,x2,y2, color) {
          var width = Math.abs(x1 - x2);
          var posX  = (x1 > x2) ? x1 : x2;
          var id ='c_'+new Date().getTime();
          var line = "<div id='"+id+"'class='line'>&nbsp;</div>";
          $('body').append(line);
          $('#'+id).css({
            left: posX,
            top: y1,
            width: width,
            position:'absolute',
            backgroundColor: color
          });
};
$(document).ready(function() {
  drawHorizondalLine(0, 10, 200, 10, '#a00');
  drawHorizondalLine(0, 50, 100, 50, '#0a0');
});
</script>
<style>
.line{
    padding;1px;
} 
</style>
<body>
  <p id="hello">Hello World</p>
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers