I have a select field with multi select option in which I need to trigger an ajax call after the select box closes(after selecting multiple options) at select box. Any help to implement this functionality.
$('#selectBoxId').on 'change', ->
$.ajax
url: '/filter'
dataType: 'script'
I have code like this. This triggers ajax call on each select option. I don't use any plugin for multi select