Cómo obtener todo el valor de ID de elemento de entrada de entrada

BY LOVE
This function will give you all the ID values of input element 

$('input').each(function (i, item)
            {
                alert(item.id);
            });
Nice Nightingale