Hi @biplob018,
I wasn’t noticed about your answer, sorry.
I tried with up to date Safari on iphone 11 Pro Max and iOS 17.1 and iphone 10 today but unfortunately the issue is still present.
Thank you
I had the same problem and I just add this script as a workaround :
This adds a span tag (because the p tag is removed and screen-reader-response seems to be mandatory)
<script>
jQuery(document).ready(function($) {
$('.screen-reader-response').prepend('<span role="status" aria-live="polite" aria-atomic="true"></span>');
});
</script>
Nevertheless, it works now..