I'm trying to make tooltips appear using jQuery Tools' tooltip feature. When the mark up looks like this, it's fine:
<input type="submit" title="Submit your foo" value="foo"></input>
But when the input is disabled, the title mysteriously disappears from the DOM:
<input type="submit" disabled="disabled" title="Sorry, you cannot submit your foo" value="foo"></input>
This only happens when I try to use jQuery tools. If I don't use jQuery tools, the title appears just fine (default browser effect). Any ideas what's wrong?
UPDATE:
http://jsfiddle.net/7jCXz/ - this example seems to remove the title attribute in both input tags, not just the disabled one.
