I am working with jQuery-Steps library
/
I would like to change in Appearance Setting "headerTag" which shows tabs on top of forms.
"headerTag" is by default "H1"
here is document
js code i used
$("#wizard-1").steps({
headerTag: "h1",
bodyTag: "fieldset",
transitionEffect: "slideLeft",
autoFocus: true
});
HTML
<h1 class="noDisplay">Profile</h1>
<fieldset>my code</fieldset>
I want to remove tabs which appears by headerTag. Is there any option headerTag:none?
I am working with jQuery-Steps library
http://www.jquery-steps./
I would like to change in Appearance Setting "headerTag" which shows tabs on top of forms.
"headerTag" is by default "H1"
here is document https://github./rstaib/jquery-steps/wiki/Settings
js code i used
$("#wizard-1").steps({
headerTag: "h1",
bodyTag: "fieldset",
transitionEffect: "slideLeft",
autoFocus: true
});
HTML
<h1 class="noDisplay">Profile</h1>
<fieldset>my code</fieldset>
I want to remove tabs which appears by headerTag. Is there any option headerTag:none?
Share Improve this question edited Jun 2, 2014 at 12:20 Sid 8018 silver badges19 bronze badges asked Jun 2, 2014 at 12:06 MayankMayank 9542 gold badges18 silver badges37 bronze badges1 Answer
Reset to default 6Try this:
jQuery
$('ul[role="tablist"]').hide();
Or CSS
ul[role="tablist"] {
display: none;
}