Guest User

Untitled

a guest
May 26th, 2013
578
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('#delete').live('click', function () {
  2.     var result;
  3.     bootbox.confirm("Are you sure?", function (response) {
  4.         result = response;
  5.     });
  6.     return result;
  7. });
  8.  
  9. $('#form').submit(function () {
  10.     var sData = oTable.$('input').serialize();
  11.     if (!sData) {
  12.         alert("Please select atleast one element");
  13.         return false;
  14.     }
  15.  
  16.     return true;
  17. });
Advertisement
Add Comment
Please, Sign In to add comment