/**
* Blink specific HTML element to set attention to this element.
*
* @param {string} element_to_blink - class or id of element: '.wpbc_widget_available_unavailable'
* @param {int} how_many_times - 4
* @param {int} how_long_to_blink - 350
*/
function wpbc_blink_element( element_to_blink, how_many_times = 4, how_long_to_blink = 350 ){
for ( let i = 0; i < how_many_times; i++ ){
jQuery( element_to_blink ).fadeOut( how_long_to_blink ).fadeIn( how_long_to_blink );
}
jQuery( element_to_blink ).animate( {opacity: 1}, 500 );
}