I have two ArrayList with their parameter .how to compare each parameter using Jquery.
1st Array List
- var resultQuiz=[];
- $(.'chklist').each(function(i){
- resultQuiz.push({
- Id: Id,
- Message: 'Ranking',
- selectedAnswerOptionID: $(this).attr('id'),
- value: $(this).text(),
- })
- });
- var isRequiredList=[];
- $('.lblisrequire').each(function(i)
- {
- isRequiredList.push({
- Id:$(this).attr('id')
- });
- });
matched element store in another arraylist.
Sreekanth ReddyPosted Nov 27, 2018, 3:30 AM
Kalyani ShevalePosted Nov 27, 2018, 6:00 AM