stat.js 461 B

1234567891011121314151617
  1. $(document).ready(function()
  2. {
  3. $('.singleEdit').click(function()
  4. {
  5. $('#attendStat tr:hidden').remove();
  6. if($('tr.edit').is(':visible')) return false;
  7. $(this).parents('tr').next('tr.edit').show();
  8. $(this).parents('tr').next('tr.edit').children('td.singleSave').show();
  9. $(this).parents('tr').hide();
  10. })
  11. if($('#ajaxForm .page-actions #submit').length > 0)
  12. {
  13. $('.singleSave').remove();
  14. }
  15. })