wp-seo-admin-global.js 276 Bytes
function wpseo_setIgnore( option, hide, nonce ) {
	jQuery.post(ajaxurl, {
			action: 'wpseo_set_ignore',
			option: option,
			_wpnonce: nonce
		}, function(data) { 
			if (data) {
				jQuery('#'+hide).hide();
				jQuery('#hidden_ignore_'+option).val('ignore');
			}
		}
	);
}