soundasleep / jquery-dropdown

Bootstrap-style dropdowns with some added features and no dependencies.
Other
767 stars 268 forks source link

programmatically show support #41

Closed omeraplak closed 10 years ago

omeraplak commented 10 years ago

usage, //Link

<a href="#" class="editable-field sample" title="Düzenle" data-dropdown="#dropdown-heightmenu">Height: <b>{{Height}} cm</b></a>

//Dropdown

<div id="dropdown-heightmenu" class="dropdown dropdown-tip">
    <div class="dropdown-panel">

        <span class="ns-pr-edit-title">Height:</span><br />
        <div style="margin-bottom: 4px;">
            <div class="qinput-wrapper">
                <span>
                    <input type="text" class="qinput-style" style="width: 30px;" /></span>
            </div>
            <div class="qinput-inlinetext">cm.</div>
        </div>
        <div style="text-align: right;"><a href="" class="blue-button">SAVE</a></div>

    </div>
</div>

javascript call;

$(".sample").dropdown("show");
claviska commented 10 years ago

Looks good, I'll merge it and update the docs.