I'm more or less aiming for the below, using the tutorial at http://roshanbh.com.np/2008/07/top-floating-message-box-using-jquery.html, however, I'd like to take it one step further.
My bar will more or less work like SO's does when you have responses to a question. The idea is that mine will display something along the lines of "The issue XYZ has just been assigned to you. View it here." And only display it until the user dismisses it or clicks the "here" link and it not display that instance of it again.
There's also the probability that more than 1 issue could be assigned to a user within the space of a few minutes, however, I don't want another message to show until the first has been dismissed.
I'm also curious as to how to go about actually making the messages appear - ideally, I'd like the Database to be queried automatically every 5 minutes for example or even (if it's possible) have a message show the instant it's assigned to a user.
For the application itself I'm using MVC, and for this particular feature I'm guessing jQuery would be the best tool for the job.
The thing I'm struggling most with however is where to begin with any of this or where to start. Could someone point me in the right direction?