Select2: Uncaught Typeerror: Options.results Is Not A Function
I am attempting to do an AJAX call with the Select2 jquery plugin. The query seems to be working, but the issue occurs when .results() is called on the options object: Uncaught Typ
Solution 1:
Since the plugin calls results(), you should also declare results: function (data, page) instead of processResults: function (data, page).
Post a Comment for "Select2: Uncaught Typeerror: Options.results Is Not A Function"