iptracker
answered Jun 10 '21 00:00
use contains selector and get last element from the selector
$(":contains('Questions'):last")
if you want to get all elements for given text than
$(":contains('Questions')").each(function(){
console.log($(this))
})