Skip to content

Instantly share code, notes, and snippets.

@moxet
Created August 25, 2023 12:59
Show Gist options
  • Save moxet/42f1ec61e1707c1bae73879465bb0079 to your computer and use it in GitHub Desktop.
Save moxet/42f1ec61e1707c1bae73879465bb0079 to your computer and use it in GitHub Desktop.
Jquery Code to Read Notification
<script>
jQuery(document).ready(function($) {
$(document).on('click',".fa-check-circle",function () {
var cct_id = $(this).siblings('.jet-listing-dynamic-field__content').text();
jQuery.ajax({
type: "post",
dataType: "json",
url: "/wp-admin/admin-ajax.php",
data: {
action:'get_data',
new_meta_value: cct_id
},
success: function(response){
location.reload();
}
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment