PolymerElements / iron-selector

Manages a list of elements that can be selected
32 stars 55 forks source link

'iron-select' event not firing in Chrome. #91

Closed brks closed 8 years ago

brks commented 8 years ago

The iron-select event is firing for me in Firefox, IE and Safari but I am unable to detect it whilst running in Google Chrome.

ebidel commented 8 years ago

Please post a reproducible code example

On Sun, Dec 13, 2015, 11:34 PM James Brooks notifications@github.com wrote:

The iron-select event is firing for me in Firefox, IE and Safari but I am unable to detect it whilst running in Google Chrome.

— Reply to this email directly or view it on GitHub https://github.com/PolymerElements/iron-selector/issues/91.

brks commented 8 years ago

@ebidel Here's my Markup:

<paper-listbox id="teams">
    <paper-item>Team 1</paper-item>
    <paper-item>Team 2</paper-item>
</paper-listbox>

And I'm using jQuery to detect the event:

$("#teams").on("iron-select", function() {
    console.log("test")
})
cdata commented 8 years ago

Please re-open this issue with a JSBin demonstrating the problem! For more details on filing issues, you can refer to our contributing guidelines.