Heelo, I know it seems to be a stupid question, but it makes me crazy
I have some buttons in my page
<ul class="nav navbar-nav">
<li><button type="button" id="start" class="btn btn-default navbar-btn">Start</button></li>
<li><button type="button" id="pause" class="btn btn-default navbar-btn" disabled="disabled"><span class="glyphicon glyphicon-pause" aria-hidden="true"></span> Pause</button></li>
<li><button type="button" id="play" class="btn btn-default navbar-btn" disabled="disabled"><span class="glyphicon glyphicon-play" aria-hidden="true"></span> Play</button></li>
<li><button type="button" id="finish" class="btn btn-default navbar-btn" disabled="disabled"><span class="glyphicon glyphicon-eject" aria-hidden="true"></span> Close</button></li>
</ul>
Now I want to dynamically use jQuery to change one button text; for example I need to change the "Start" text. I tried the following code without success:
$("#start").text = "Open PHASE";