Skip to content

Instantly share code, notes, and snippets.

Created August 14, 2013 11:36
Show Gist options
  • Save anonymous/6230264 to your computer and use it in GitHub Desktop.
Save anonymous/6230264 to your computer and use it in GitHub Desktop.
$('form.fileEdit input[type="submit"]').live('click', function(e) {
e.preventDefault();
$.getJSON(ADMIN_URL+'filemanager/editfile',
$(this).parent('form').serialize(),
function(data) {
alert(data);
getFiles({clearout:true});
}
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment