You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For Version 1.1
The tooltips are there due to the 'title' tag being used in the fieldset.
You can get rid of the tooltips by the following.
Amend your fieldsets so they use data-title instead.
From: title="Step 1" to data-title="Step 1"
Then amend the stepy.js ,
from: return $('<div />', { html: step.attr('title') || '--' });
to: return $('<div />', { html: step.attr('data-title') || '--' });
puts tooltip on every element relative to the form number.
The text was updated successfully, but these errors were encountered: