最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to remove Appearance of tabs on froms by jQuery-Steps - Stack Overflow

programmeradmin2浏览0评论

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 badges
Add a ment  | 

1 Answer 1

Reset to default 6

Try this:

jQuery

$('ul[role="tablist"]').hide();

Or CSS

ul[role="tablist"] {
    display: none;
}
发布评论

评论列表(0)

  1. 暂无评论