Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.14/angular.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body ng-app="categoryBids">
  <div ng-controller="CategoryBidsController">
    <table class="table table-striped"> 
      <thead>
        <tr>
          <th ng-repeat="header in table_headers">
            {{ header }}
          </th>
        </tr>
      </thead>
      <tbody>
        <tr ng-repeat="product in products">
          <td>{{ product.name }}</td>
          <td>{{ product.price }}</td>
          <td> <input ng-model="bid"> </td>
          <td> <i class="fa fa-times" style="cursor:pointer;" ng-click="deleteRow($index)"></i></td>
        </tr>
      </tbody>
    </table>
  </div>
  
</body>
</html>
Output

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

Dismiss x
public
Bin info
ConAntonakospro
0viewers