jquery - Bootstrap button disabled by default, how can I enable it? -
i adding content bootstrap page using $.get()
url , working except close button displays if disabled. i've tried btn-primary
, btn-info
same result. bootstrap offers disabled
keyword not enabled
one. here html button:
<a class="btn btn-small close"><i class="icon-remove"></i> close</a>
my 2 questions -- why default being disabled , suggestions how make normal button? thanks!
you remove property:
$('#whatever').removeattr('disabled');
and disabled
property comes html.
Comments
Post a Comment