Skip to content

Instantly share code, notes, and snippets.

@mjbradford89
Created May 28, 2014 16:16
Show Gist options
  • Save mjbradford89/5cfcde59be2166575e29 to your computer and use it in GitHub Desktop.
Save mjbradford89/5cfcde59be2166575e29 to your computer and use it in GitHub Desktop.
<div class="btn-group" id="yui_2_5_0_1_1401293648379_841">
<button type="button" class="btn btn-default btn-default-content yui3-widget yui3-btn yui3-btn-content yui3-btn-focused" id="yui_2_5_0_1_1401293648379_876"><span class="glyphicon glyphicon-ok-sign"></span> Save</button>
<button type="button" class="btn btn-default btn-default-content yui3-widget yui3-btn yui3-btn-content" id="yui_2_5_0_1_1401293648379_840">Cancel</button>
</div>
@marclundgren
Copy link

YUI().use('aui-base', function(Y) {
    var buttonList = Y.all('btn-group button'),
        buttonSave = buttonList.item(0), // "Save" is the first button
        buttonCancel = buttonList.item(1); // "Cancel" is the second button

    console.log(buttonSave, buttonCancel);
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment