I have this code
$(function() {
var message = 'Dont forget us';
var original;
var txt1 = ' - ';
$(window).focus(function() {
if (original) {
document.title = original;
}
}).blur(function() {
var title = $('title').text();
if (title != message) {
original = title;
}
document.title = message + txt1 + original;
});
});
Which actaully changes Browser tab title to message = 'Dont forget us' when you open new browser tab, and when you come back then again it shows titles page.
But I dont know how to make scrolling or moving from left to right browser title ?
So when someone opens the new tab, it will display: Dont forget us
but i want that this is moving.
please help
Thank you