0 votes
by (2.7k points)
How can you change the icon in the corner of the tab your game is playing in?

1 Answer

0 votes
by (63.1k points)
selected by
 
Best answer

 put something like this in your JavaScript: 

$(document.head).append('<link rel="icon" href="url/to/youricon.png" type="image/png" />');

 

...