Search code examples
jqueryhidden-field

How to get the hidden field value in each table row


enter image description here

i just want to get the hidden field value in each row of the table,how can i do this,any suggestions appreciated


Solution

  • function ApplyProcessingColor()
        {
            $("#xhtml_grid tr").each(function()
            {
                var hdnLock=$(this).find("td:first").text();
                if(hdnLock=='True')
                {
                    $(this).css('background-Color','#7FFFD4');
                }
            });
        }
    

    in this way i found solution