Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fieldset title attribute force a mouseover tip over the whole fieldset #19

Open
visicode opened this issue Nov 6, 2012 · 3 comments
Open

Comments

@visicode
Copy link

visicode commented Nov 6, 2012

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.

@andrija-naglic
Copy link

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! ;)

@wbotelhos
Copy link
Owner

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 ...

@farrukhsubhani
Copy link

Thanks. Looking forward to this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants