Skip to content

Instantly share code, notes, and snippets.

@MikeRogers0
Forked from anonymous/gist:6230264
Last active December 21, 2015 01:49
Show Gist options
  • Save MikeRogers0/6230542 to your computer and use it in GitHub Desktop.
Save MikeRogers0/6230542 to your computer and use it in GitHub Desktop.
$('form.fileEdit input[type="submit"]').on('click', function(e) {
e.preventDefault();
var _$thisElem = $(this);
$.getJSON(ADMIN_URL+'filemanager/editfile',
_$thisElem.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