Bootstrap Listgroup selected item

With the Bootstrap Listgroup, you can get the index of the selected item, but is it possible to get the selected item text?

Thanks

You get the index or the value?

I can only get the index.

Try this:

$("#Listgroup1_" + choice).text()

That is working, thanks.