Skip to content

Instantly share code, notes, and snippets.

@rockschtar
Last active August 29, 2015 13:57
Show Gist options
  • Save rockschtar/9588721 to your computer and use it in GitHub Desktop.
Save rockschtar/9588721 to your computer and use it in GitHub Desktop.
WordPress: Hook into Widget save Javascript Callback
jQuery(document).ajaxSuccess(function(e, xhr, settings) {
var widget_id_base = 'my-widget-id-base';
if(settings.data && settings.data.search('action=save-widget') != -1 && settings.data.search('id_base=' + widget_id_base) != -1) {
//do something
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment