I'm creating an extension for Firefox for Android which adds dinamically some elements to DOM, and some of them needs to display an alert message.
var li=window.content.document.createElement('li');
li.onclick = function(){
alert("lalalalalalallalallalala");
}
So I got it, but when the message is displayed, the alert has a "[JavaScript Application]" title. Is there a way to change that title?