Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $('#delete').live('click', function () {
- var result;
- bootbox.confirm("Are you sure?", function (response) {
- result = response;
- });
- return result;
- });
- $('#form').submit(function () {
- var sData = oTable.$('input').serialize();
- if (!sData) {
- alert("Please select atleast one element");
- return false;
- }
- return true;
- });
Advertisement
Add Comment
Please, Sign In to add comment