In my web app, whenever any error occurs, that error message is being displayed through jGrowl box:
$.jGrowl("This is an error message.");
Also I use the jGrowl box for showing normal messages/notifications. I am making my app accessibility friendly. I am using JAWS as screen reader. When a jGrowl message pops up, JAWS is not reading that message.
How do I make JAWS read that message? Any workaround?
Or is there any jQuery method through which I'd know that a jGrowl message is being displayed so that I can set focus or something so that the screen reader reads that message and notify the user.
Thanks in advance.