| 1 |
jQuery( document ).on( 'change', '#wppb-dashboard-stats-select', function(){ |
| 2 |
|
| 3 |
let value = jQuery( this ).val() |
| 4 |
let nonce = jQuery( '#wppb-dashboard-stats-select__nonce' ).val() |
| 5 |
|
| 6 |
jQuery.post( ajaxurl, { action: 'wppb_get_dashboard_stats', interval: value, '_wpnonce': nonce }, function( response ) { |
| 7 |
|
| 8 |
response = JSON.parse( response ) |
| 9 |
|
| 10 |
if( response.data.newly_registered !== undefined && response.data.newly_registered !== null) |
| 11 |
jQuery('.wppb-dashboard-box.newly_registered .value').html( response.data.newly_registered ) |
| 12 |
|
| 13 |
}); |
| 14 |
|
| 15 |
}); |