Here is the html code
<div class="field">
<label for="billing:region_id" class="">
<em style="display: none;">*</em>city
</label>
<div class="input-box">
<select id="billing:region_id" name="billing[region_id]" title="縣市" class="" style="display: none;" defaultvalue="">
<option value="">please select</option>
</select>
<script type="text/javascript">
//<![CDATA[
$('billing:region_id').setAttribute('defaultValue', "");
//]]>
</script>
<input type="text" id="billing:region" name="billing[region]" value="" title="region" class="input-text">
</div>
</div>
I want to hide the
<input type="text" id="billing:region" name="billing[region]" value="" title="region" class="input-text">
with the css
#billing:region
{
display: none;
}
but it does not work. Anyone know what the problem is?