diff --git a/index.html b/index.html index 87df38dc..adac518f 100644 --- a/index.html +++ b/index.html @@ -1531,7 +1531,7 @@ $("#select").select2({
val
method invoked on a single-select with an unset value will return ""
, while a val
method invoked on an empty multi-select will return []
alert("Selected value is: "+$("#e8").select2("val")); $("#e8").select2("val", "CA"});+ Example:
alert("Selected value is: "+$("#e8").select2("val")); $("#e8").select2("val", "CA");
Notice that in order to use this method you must define the initSelection
function in the options so Select2 knows how to transform the id of the object you pass in val()
to the full object it needs to render selection. If you are attaching to a select
element this function is already provided for you.
val
method invoked on a single-select with an unset value will return ""
, while a val
method invoked on an empty multi-select will return []
alert("Selected value is: "+$("#e8").select2("val")); $("#e8").select2("val", "CA"});+ Example:
alert("Selected value is: "+$("#e8").select2("val")); $("#e8").select2("val", "CA");
Notice that in order to use this method you must define the initSelection
function in the options so Select2 knows how to transform the id of the object you pass in val()
to the full object it needs to render selection. If you are attaching to a select
element this function is already provided for you.