Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.24/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.24/jquery-ui.min.js"></script>
<script src="http://cloud.github.com/downloads/SteveSanderson/knockout/knockout-2.1.0.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
        <table>
          <tbody data-bind="foreach: people">
            <tr>
                <td data-bind="text: name"></td>
                <td>
                    <a data-bind="click: function(data, event) { $root.itemToRemove(data);
$root.confirmMessageText('Are you sure you want delete ' + data.name + '?') 
}, 
value: $root.confirmMessageText, 
confirm: { Item: $data }" 
class="ui-widget-content">Delete</a>
                </td> 
            </tr>
          </tbody>
        </table> 
  
  <div style="display: none;">
    <div id="globalConfirm" class="dialog">
      <span data-bind="text: $root.confirmMessageText"> 
      </span>
    </div>
  </div>
</body>
</html>
Output 300px

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers