check display none condition

PHOTO EMBED

Thu Jul 06 2023 12:10:43 GMT+0000 (Coordinated Universal Time)

Saved by @gshailesh27

$(".eventssubtabs li").click(function(){
  if($('#parent .tab-pane').css('display') == 'none')
    {
        $('.no-listing').show();
    }else{
        $('.no-listing').hide();
    }
});
content_copyCOPY