$("#elementId").data("chosen");
This will return the selected object assigned to the element, or undefined if not assigned.
Note. For other plugins or versions of jQuery I've worked with, you may need to check the plugin name with "Obj":
$("#elementId").data("pluginNameObj");
source
share