It works fine when I switch the button and it changes glyphicons. But I also want to change the text and color. Here is my code
HTML
<button class="btn btn-primary">
<i class="glyphicon glyphicon-plus">
Add
</button>
Javascript
$(document).ready(function() {
$(':button').click(function(){
$(this).find('i').toggleClass('glyphicon-plus').toggleClass('glyphicon-ok');
});
try, it doesnβt help me - removeClass('btn-primary').addClass('btn-danger').text('chosen')
source
share