@@ -101,7 +101,7 @@ By default, if the cursor is immediately after a tag, hitting backspace will del
101101
102102For validation purposes you an use ` unique ` , ` limit ` , ` minChars ` , ` maxChars ` and ` validationPattern ` parameters.
103103
104- You can check ` example.html ` file to see plugin usage examples.
104+ You can check ` example.html ` file to see the plugin usage examples.
105105
106106## Options
107107
@@ -111,12 +111,12 @@ $('.tagsinput#tags').tagsInput({
111111 placeholder: 'Add a tag',
112112 minChars: 2,
113113 maxChars: 20, // if not provided there is no limit
114- limit: 5,
115- validationPattern: new RegExp('^[a-zA-Z]+$'), // pattern you can use to validate input
114+ limit: 5, // if not provided there is no limit
115+ validationPattern: new RegExp('^[a-zA-Z]+$'), // a pattern you can use to validate the input
116116 width: '300px', // standard option is 'auto'
117117 height: '100px', // standard option is 'auto'
118118 autocomplete: { option: value, option: value},
119- autocomplete_url: url_to_autocomplete_api ,
119+ autocomplete_url: 'URL' ,
120120 hide: true,
121121 delimiter: [',',';'], // or a string with a single delimiter. Ex: ';'
122122 unique: true,
0 commit comments