2
You can do this using a function on javascript
:
function changeTitle() {
var titulo = document.title;
var numero = 5; // Número de notificações a ser exibidas
var novoTitulo = '(' + numero + ') ' + titulo;
document.title = novoTitulo;
}
Then it depends on you changing the variable numero
to get the amount of notifications your user has.
Suggestion to avoid something like "(5) (4) (3) (2) (1) my title" when the expected should be "(5) my title" and for the use of ajax: https://answall.com/a/108449/3635
– Guilherme Nascimento