I've no idea as you're using some sort of helper library.
Code:
... = new Button();
is not standard DOM so you'll have to look at the documentation for the library you're using.
In standard DOM you'd set the button's title property.
Code:
document.getElementById("myButton").title = "Click here to submit";
--
Joe (
Microsoft MVP - XML)