How to clear the value of input id "price" and disable it when clicking on radio button id "meta_price_type_0" ,"meta_price_type_1",meta_price_type_2
<input id="price" type="text" name="price" value="200" >
<input type="radio" name="meta[4]" id="meta_price_type_0" value="Has Price Above0">
<input type="radio" name="meta[4]" id="meta_price_type_1" value="Has Price Above1">
<input type="radio" name="meta[4]" id="meta_price_type_2" value="Has Price Above2">
$("#meta_price_type_0").click(function(){ $('#price').val(''); });