var vals = new Array();
var i=0;
var options='';
jQuery('#SearchResultsTable123 tr:gt(0) td:nth-child(2)').each(function(){
var t=jQuery(this).html();
if(jQuery.inArray(t, vals) < 0)
{
vals[i]=t;
i++;
}
});
for(var j=0;j<i;j++)
{
options += vals[j] +':' ;
}
alert(options);
This code gives me the distinct value of that column but only for visible page.