stepy
stepy copied to clipboard
Fieldset title attribute force a mouseover tip over the whole fieldset
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.
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! ;)
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 ...
Thanks. Looking forward to this