1st array element $('input[value='+$(this).text()+']'

1st array element $('input[value='+$(this).text()+']'


if I with the selector $('input[value='+$(this).text()+']') all the
objects grab they match with the value and count them i got 3 results.
i want to remove the first object in the array from the DOM, i tried
already some different thins like:
$('input[value='+$(this).text()+']')[0].remove();
($('input[value='+$(this).text()+']')[0]).remove();
($('input[value='+$(this).text()+']'))[0].remove();
($(('input[value='+$(this).text()+']'))[0]).remove();
(($('input[value='+$(this).text()+']'))[0]).remove();
but no result or an error.
who can help me out