Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. finalize = function()
  2. {
  3. var tableData = "";
  4. $('#results').find('tr').each(function() {
  5. var row = $(this);
  6. if (row.find('input[type="checkbox"]:checked'))
  7. {
  8. tableData = tableData + row.find('td:first > a').text() + 'n';
  9. }
  10. });
  11.  
  12. //$.post("/Journal/SaveEntry", tableData); // parse json at your controller
  13.  
  14. alert(tableData);
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement