I have a input
that is disabled by default, however I wanted to enable it in loading the page through jQuery, but it is not working.
Code of input
:
<input type="text" title="Número" name="billing[street][2]" id="billing:street2" class="input-text required-entry" value="" autocomplete="off" disabled="">
I tried the code below but did not succeed:
$j(document).ready(function(){
$j('#billing:street2').prop('disabled',false);
})