25/04/2015 by Nitesh

How To Clear Items of ASP.Net DropDownList Control Using jQuery

Friends,

In this post, we will see how can we clear all items of a ASP.Net DropDownList control using jQuery.

To start with, we will define a ASP.Net DropDownList control on our .aspx page and a button with the help of which we will be clearing the items of the DropDownList control. We assign it a specific class using the CssClass property that we can refer to in jQuery.

 

            
            
            
            
            


After our controls are defined, we bind the click event of the button to clear the items using the .empty() function as below –

    
        

Hope you like this. Keep learning and sharing!

#ASP.Net#jQuery