1
Answer

Add Select Text in drodown

i ambinding my dropdown using jquery like this-

$.each(jQuery.parseJSON(AllowNewChildEnroll).Results, function (key, value) {

                $("#ddlSchoolAdd").append($("<option></option>").val(this.Id).html(this.Name));

            });


But problem is how to add Select School in zero Index?
Answers (1)