---
title: "Enable disabled Radiobuttonlist with jQuery"  
description: "Enable disabled Radiobuttonlist with jQuery"  
author: "Anonymous User"  
published: 2014-11-30  
updated: 2014-12-01  
canonical: https://www.mindstick.com/forum/12721/enable-disabled-radiobuttonlist-with-jquery  
category: "jquery"  
tags: ["javascript", "radiobutton"]  
reading_time: 1 minute  

---

# Enable disabled Radiobuttonlist with jQuery

I have a [radiobuttonlist](https://www.mindstick.com/forum/2150/modify-page_load-method-for-radiobuttonlist) initially disabled (Enabled="false"). I want to enable it on a [button click](https://www.mindstick.com/forum/790/form-gets-submiited-twice-on-button-click). The jQuery line that would enable the radiobuttonlist is as follows:

$("#<%=MyRadioButtonList.ClientID%>").prop("disabled", false);

But it does not work. What I noticed is that [ASP.NET](https://www.mindstick.com/articles/934/default-folders-available-inside-the-asp-dot-net-application-folder) encloses the [input tag](https://www.mindstick.com/interview/33891/how-to-use-input-tag-in-html) with which, if I understand correctly, prevents the [javascript](https://www.mindstick.com/articles/874/how-to-create-watermark-text-for-textbox-by-using-javascript) [code](https://yourviews.mindstick.com/view/85458/alan-turing-the-mastermind-behind-cracking-the-enigma-code-during-world-war-ii) from [enabling](https://yourviews.mindstick.com/view/86018/ai-and-5g-enabling-the-internet-of-things-iot) the list.

What would you suggest?

## Replies

### Reply by Anonymous User

You can simply try like this

$("#<%=MyRadioButtonList.ClientID %>").find('[input](https://www.mindstick.com/forum/159209/how-can-i-read-convert-an-input-stream-into-a-string-in-java)').prop('disabled', false);


---

Original Source: https://www.mindstick.com/forum/12721/enable-disabled-radiobuttonlist-with-jquery

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
