in client script how can I acess the tooltip property, I need to read it...
function
lblMsg_TextChanged(sender, eventargs){
var
xid=sender._id;var txt = $find(xid);alert(txt.tooltip);
}
help...thanks!!
Hello Mason,
You can get the tooltip by grabbing the input element and reading the title property off of it?
function lblMsg_TextChanged(sender, eventargs){
sender.get_inputElement().title
HTH,
-Taz
thanks Taz....very helpful