Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Can you show us a JS Fiddle, JS Bin, or similar, demo to see what you're doing? – David Thomas Jul 9 '12 at 11:20
1  
OK. Trying to put together a demo. – StackOverflowNewbie Jul 9 '12 at 11:24

1 Answer

up vote 1 down vote accepted

Try to wrap your submit button into an div, then use tooltip on your div:

$(document).ready(function(){
    $('input[disabled="disabled"]').each(function(){
        var $tit = $(this).attr('title');
        $(this).wrap('<div class="submitWrapper" title="' + $tit + '"></div>');
    });
    //$('.submitWrapper').tooltip(); // or something like this
    $('.submitWrapper').on('mouseover', function(){
        alert('submitWrapper clicked!');
    });
});

Demo

share|improve this answer
Why? I have title attributes in so many links, submits, etc. -- where I think they should go (semantically speaking). I try to avoid bloating mark up by adding divs, spans, etc. if I can. What's causing my problem? – StackOverflowNewbie Jul 9 '12 at 11:36
Probably the tooltip does not work with disabled elements. So I think you should wrap them in to div's (only disabled elements). BTW, could you tell me which tooltip are you using? – Fari Jul 9 '12 at 11:41
I'm using jQuery Tools. – StackOverflowNewbie Jul 9 '12 at 11:53
This works in Opera. Could you test it and tell me what your browser is? – Fari Jul 9 '12 at 12:05
Problem exist in Chrome and FF. Problem also exist in your example. The "No" button does not have a tool tip. That's the problem I'm seeing. – StackOverflowNewbie Jul 9 '12 at 12:16
show 8 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.