Avatar of ITsolutionWizard
ITsolutionWizard
Flag for United States of America

asked on 

jquery, dropdown

function OnSuccess(response) {

         var productSubCode = '#' + '<%=PRODUCT_SUBCODE.ClientID %>';
         var sc = $(productSubCode).empty();
         $.each(response.d, function (i, d) {
             sc.append($('<option/>').val(d).html(d));           
         });
         //alert("Success: " + response.d);
     }

Open in new window


It seems like OnSuccess return me  <select><option>Test</option></select> only.
How can I get a point return me below:

<select><option value="Test">Test</option></select>
jQueryJavaScriptAJAX

Avatar of undefined
Last Comment
leakim971

8/22/2022 - Mon