I've got multiple buttons. These buttons are created dynamically. Each button has a unique button text.
How can I get the button text in to an array?
<button type="button" class "utClass">uniqueText1</button>
<button type="button" class "utClass">uniqueText2</button>
<button type="button" class "utClass">uniqueText3</button>
var butTxArr = [];
$("#intoArr").click(function(){
//how to get the button text into butTxArr
});