stepy icon indicating copy to clipboard operation
stepy copied to clipboard

Fieldset title attribute force a mouseover tip over the whole fieldset

Open visicode opened this issue 12 years ago • 3 comments

Hi The fieldset title attribute has wrong behavior on Safari (and maybe other browsers): a mouseover tip will pop over the whole fieldset and all its included elements! To avoid this problem, you should not use this reserved attribute.

visicode avatar Nov 06 '12 11:11 visicode

Hi I had same problem on Firefox. This is how I did it:

I changed in jquery.stepy.js (line 94):

                title = $step.attr('title');

With:

                title = $step.children('div.name_of_step').html();

In the HTML:

            <fieldset>
                <div class="name_of_step">Step 1</div>
                <legend>Description text</legend>

In CSS:

            .name_of_step { display: none; }

Hope it helps! ;)

andrija-naglic avatar Jan 18 '13 13:01 andrija-naglic

Hi guys,

I was kind of busy, but now I finished my blog and I'll update all plugins in order: Taby, Raty, Stepy, Gridy ...

wbotelhos avatar Jan 18 '13 21:01 wbotelhos

Thanks. Looking forward to this

farrukhsubhani avatar Jan 25 '13 20:01 farrukhsubhani