Hi,
iam working in a travel related application.in my application .available seats are displayed ina table and each cell having unique id.when i click a cell of available seat,the details are displayed in textboxes including id of the cell.id is set in hiddenfield.it is working fine for set a single value in hidden field.my requirement is i want to add multiple value in hiddenfield.second reqirement is
following working fine for single id
$('#' + hval).parent().empty().append("<a class='anchor3' id ='" + hval + "' href='#' >booked</a>").css('background-color', 'LightGrey');
hval is id of cell
if there is multiple id how to add above code