I want to find the first span element after class counter, in code something like this:
Try something like this:
$(".counter ~ span:first");
Hope that helps!