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';
        }

    // Prepared a template for inside jquery append as given below.
        var template = '<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">'
                    + ' <div class="easy-pie-chart ' + txtColor + '">'
                    + ' <span class="h4 font-bold m-t block">' + val.data + '</span><br />'
                    + ' </div>'
                    + ' <small ><a class="' + txtColor + '">' + val.name + '</a></small>'
                + '</div>';

        $('#status').append(template);
});



I think, It might help you! Thank you!



ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^