[Fixed][V2] - Event on closed

Hello,

What is the correct way to call the event “on closed” for a specific smart-list (id='Art_Link")?

I’m trying with the smartselect:closed but I´m only able to select all of them.

$$(document).on('smartselect:closed', function (e) { ...

})
The above one is fired for all of them.

I already tried the below:
$$('.smart-select Art_link').on('smartselect:closed', function(e){
})
Thanks!

Found it.

$$(document).on(‘smartselect:closed’, ‘#my_ss_name’, function (e) {…

1 Like