# zselect **Repository Path**: xiunen/zselect ## Basic Information - **Project Name**: zselect - **Description**: a jquery chosen plugin, it`s value has order when select multiple, it has remark of every item - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2015-04-27 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README zselect ======= a jquery chosen plugin, its value`s in the order of select when select is multiple, it has remark of every item How to use? ======= you can use like this: [html] [js] $("#test-select").zselect({ multiple: true/false //is multiple select or not options:[{ //select options value:1, label:"China", mark:"Asia" },{ value:2, label:"USA", mark:"America" },{ value:3, label:"India", mark:"Asia" }], value:[1,2] }); Also, you can use it like this: [html] [js] $("#test-select").zselect();