Skip to main content

Posts

Showing posts with the label if else inside jQuery append

if else inside jQuery append

Hello everyone, I am going to share the code-sample for use of if-else inside append . The example as given below. $.each(dataStatus, function (key, val) {         var txtColor;        //if-else inside append as given below.         if (val.status == 201) {             txtColor = 'txt-color-green' ;         } else if (val.status == 202) {             txtColor = 'txt-color-red' ;         } else if (val.status == 207) {             txtColor = 'txt-color-pink' ;         } else if (val.status == 208) {             txtColor = 'txt-color-purple...