Trying to add/change a class within a tag based on condition when the is part of a string









up vote
1
down vote

favorite












How would I change the class based on a condition when the tag is part of a string in coffeeScript:



rows+= "<tr class='row'>" + 
"<td class='name'>" + awayTeam + "</td>" +
"<td class='score'>" + aScore + "</td>" +
"<td class='name'>" + homeTeam + "</td>" +
"<td class='score'>" + hScore + "</td>" +
"<td class='period'>" + currentPeriod + "</td>" +
"</tr>"


table = "<table class='data'>" + rows + "</table>"

return table


If aScore > hScore, how can I change the class='name' to class='winning'?



I have tried....



"<td class="$(aScore>hScore) ? 'winning' : 'name'">" + awayTeam + "</td>"


but get an unexpected identifier error.



Any help would be very appreciated.










share|improve this question

























    up vote
    1
    down vote

    favorite












    How would I change the class based on a condition when the tag is part of a string in coffeeScript:



    rows+= "<tr class='row'>" + 
    "<td class='name'>" + awayTeam + "</td>" +
    "<td class='score'>" + aScore + "</td>" +
    "<td class='name'>" + homeTeam + "</td>" +
    "<td class='score'>" + hScore + "</td>" +
    "<td class='period'>" + currentPeriod + "</td>" +
    "</tr>"


    table = "<table class='data'>" + rows + "</table>"

    return table


    If aScore > hScore, how can I change the class='name' to class='winning'?



    I have tried....



    "<td class="$(aScore>hScore) ? 'winning' : 'name'">" + awayTeam + "</td>"


    but get an unexpected identifier error.



    Any help would be very appreciated.










    share|improve this question























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      How would I change the class based on a condition when the tag is part of a string in coffeeScript:



      rows+= "<tr class='row'>" + 
      "<td class='name'>" + awayTeam + "</td>" +
      "<td class='score'>" + aScore + "</td>" +
      "<td class='name'>" + homeTeam + "</td>" +
      "<td class='score'>" + hScore + "</td>" +
      "<td class='period'>" + currentPeriod + "</td>" +
      "</tr>"


      table = "<table class='data'>" + rows + "</table>"

      return table


      If aScore > hScore, how can I change the class='name' to class='winning'?



      I have tried....



      "<td class="$(aScore>hScore) ? 'winning' : 'name'">" + awayTeam + "</td>"


      but get an unexpected identifier error.



      Any help would be very appreciated.










      share|improve this question













      How would I change the class based on a condition when the tag is part of a string in coffeeScript:



      rows+= "<tr class='row'>" + 
      "<td class='name'>" + awayTeam + "</td>" +
      "<td class='score'>" + aScore + "</td>" +
      "<td class='name'>" + homeTeam + "</td>" +
      "<td class='score'>" + hScore + "</td>" +
      "<td class='period'>" + currentPeriod + "</td>" +
      "</tr>"


      table = "<table class='data'>" + rows + "</table>"

      return table


      If aScore > hScore, how can I change the class='name' to class='winning'?



      I have tried....



      "<td class="$(aScore>hScore) ? 'winning' : 'name'">" + awayTeam + "</td>"


      but get an unexpected identifier error.



      Any help would be very appreciated.







      javascript css coffeescript






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 10 at 4:23









      Woody

      82




      82






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          Expecting aScore and hScore as integers.
          Then this should work,



          var res_class = ( aScore > hScore ) ? 'winning' : 'name';

          rows+= "<tr class='row'>" +
          "<td class='"+res_class+"'>" + awayTeam + "</td>" +
          "<td class='score'>" + aScore + "</td>" +
          "<td class='name'>" + homeTeam + "</td>" +
          "<td class='score'>" + hScore + "</td>" +
          "<td class='period'>" + currentPeriod + "</td>" +
          "</tr>";
          table = "<table class='data'>" + rows + "</table>";

          return table





          share|improve this answer




















          • This worked! Thank you for replying!!
            – Woody
            Nov 10 at 21:07






          • 1




            @Woody ok...then please accept this answer. To help others in finding this as solution.
            – WC2
            Nov 11 at 6:02

















          up vote
          0
          down vote













          you can use this:
          you must select ascore and hscore separately to compare values, so I change their class name to score-ascore and score-hscore.



          after condition occurred change name class with winning.



          <!DOCTYPE html>
          <html>
          <head>
          <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
          </head>
          <body>
          </body>

          <script type="text/javascript">
          $(document).ready(function()
          $('body').html(create())
          var ascore = $('.score-ascore').text()
          var hscore = $('.score-hscore').text()
          if(aScore>hScore)
          var element = $("td.name")
          element.addClass("winning")
          element.removeClass("name")


          )

          function create()
          awayTeam = 10
          aScore = 10
          homeTeam = 10
          hScore = 9
          currentPeriod = 10
          rows = 10
          rows+= '<tr class="row">' +
          '<td class="name">' + awayTeam + '</td>' +
          '<td class="score-ascore">' + aScore + '</td>' +
          '<td class="name">' + homeTeam + '</td>' +
          '<td class="score-hscore">' + hScore + '</td>' +
          '<td class="period">' + currentPeriod + '</td>' +
          '</tr>'
          table = '<table class="data">' + rows + '</table>'
          return table

          </script>
          </html>





          share|improve this answer




















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53235976%2ftrying-to-add-change-a-class-within-a-td-tag-based-on-condition-when-the-td%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            1
            down vote



            accepted










            Expecting aScore and hScore as integers.
            Then this should work,



            var res_class = ( aScore > hScore ) ? 'winning' : 'name';

            rows+= "<tr class='row'>" +
            "<td class='"+res_class+"'>" + awayTeam + "</td>" +
            "<td class='score'>" + aScore + "</td>" +
            "<td class='name'>" + homeTeam + "</td>" +
            "<td class='score'>" + hScore + "</td>" +
            "<td class='period'>" + currentPeriod + "</td>" +
            "</tr>";
            table = "<table class='data'>" + rows + "</table>";

            return table





            share|improve this answer




















            • This worked! Thank you for replying!!
              – Woody
              Nov 10 at 21:07






            • 1




              @Woody ok...then please accept this answer. To help others in finding this as solution.
              – WC2
              Nov 11 at 6:02














            up vote
            1
            down vote



            accepted










            Expecting aScore and hScore as integers.
            Then this should work,



            var res_class = ( aScore > hScore ) ? 'winning' : 'name';

            rows+= "<tr class='row'>" +
            "<td class='"+res_class+"'>" + awayTeam + "</td>" +
            "<td class='score'>" + aScore + "</td>" +
            "<td class='name'>" + homeTeam + "</td>" +
            "<td class='score'>" + hScore + "</td>" +
            "<td class='period'>" + currentPeriod + "</td>" +
            "</tr>";
            table = "<table class='data'>" + rows + "</table>";

            return table





            share|improve this answer




















            • This worked! Thank you for replying!!
              – Woody
              Nov 10 at 21:07






            • 1




              @Woody ok...then please accept this answer. To help others in finding this as solution.
              – WC2
              Nov 11 at 6:02












            up vote
            1
            down vote



            accepted







            up vote
            1
            down vote



            accepted






            Expecting aScore and hScore as integers.
            Then this should work,



            var res_class = ( aScore > hScore ) ? 'winning' : 'name';

            rows+= "<tr class='row'>" +
            "<td class='"+res_class+"'>" + awayTeam + "</td>" +
            "<td class='score'>" + aScore + "</td>" +
            "<td class='name'>" + homeTeam + "</td>" +
            "<td class='score'>" + hScore + "</td>" +
            "<td class='period'>" + currentPeriod + "</td>" +
            "</tr>";
            table = "<table class='data'>" + rows + "</table>";

            return table





            share|improve this answer












            Expecting aScore and hScore as integers.
            Then this should work,



            var res_class = ( aScore > hScore ) ? 'winning' : 'name';

            rows+= "<tr class='row'>" +
            "<td class='"+res_class+"'>" + awayTeam + "</td>" +
            "<td class='score'>" + aScore + "</td>" +
            "<td class='name'>" + homeTeam + "</td>" +
            "<td class='score'>" + hScore + "</td>" +
            "<td class='period'>" + currentPeriod + "</td>" +
            "</tr>";
            table = "<table class='data'>" + rows + "</table>";

            return table






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 10 at 15:45









            WC2

            1989




            1989











            • This worked! Thank you for replying!!
              – Woody
              Nov 10 at 21:07






            • 1




              @Woody ok...then please accept this answer. To help others in finding this as solution.
              – WC2
              Nov 11 at 6:02
















            • This worked! Thank you for replying!!
              – Woody
              Nov 10 at 21:07






            • 1




              @Woody ok...then please accept this answer. To help others in finding this as solution.
              – WC2
              Nov 11 at 6:02















            This worked! Thank you for replying!!
            – Woody
            Nov 10 at 21:07




            This worked! Thank you for replying!!
            – Woody
            Nov 10 at 21:07




            1




            1




            @Woody ok...then please accept this answer. To help others in finding this as solution.
            – WC2
            Nov 11 at 6:02




            @Woody ok...then please accept this answer. To help others in finding this as solution.
            – WC2
            Nov 11 at 6:02












            up vote
            0
            down vote













            you can use this:
            you must select ascore and hscore separately to compare values, so I change their class name to score-ascore and score-hscore.



            after condition occurred change name class with winning.



            <!DOCTYPE html>
            <html>
            <head>
            <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
            </head>
            <body>
            </body>

            <script type="text/javascript">
            $(document).ready(function()
            $('body').html(create())
            var ascore = $('.score-ascore').text()
            var hscore = $('.score-hscore').text()
            if(aScore>hScore)
            var element = $("td.name")
            element.addClass("winning")
            element.removeClass("name")


            )

            function create()
            awayTeam = 10
            aScore = 10
            homeTeam = 10
            hScore = 9
            currentPeriod = 10
            rows = 10
            rows+= '<tr class="row">' +
            '<td class="name">' + awayTeam + '</td>' +
            '<td class="score-ascore">' + aScore + '</td>' +
            '<td class="name">' + homeTeam + '</td>' +
            '<td class="score-hscore">' + hScore + '</td>' +
            '<td class="period">' + currentPeriod + '</td>' +
            '</tr>'
            table = '<table class="data">' + rows + '</table>'
            return table

            </script>
            </html>





            share|improve this answer
























              up vote
              0
              down vote













              you can use this:
              you must select ascore and hscore separately to compare values, so I change their class name to score-ascore and score-hscore.



              after condition occurred change name class with winning.



              <!DOCTYPE html>
              <html>
              <head>
              <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
              </head>
              <body>
              </body>

              <script type="text/javascript">
              $(document).ready(function()
              $('body').html(create())
              var ascore = $('.score-ascore').text()
              var hscore = $('.score-hscore').text()
              if(aScore>hScore)
              var element = $("td.name")
              element.addClass("winning")
              element.removeClass("name")


              )

              function create()
              awayTeam = 10
              aScore = 10
              homeTeam = 10
              hScore = 9
              currentPeriod = 10
              rows = 10
              rows+= '<tr class="row">' +
              '<td class="name">' + awayTeam + '</td>' +
              '<td class="score-ascore">' + aScore + '</td>' +
              '<td class="name">' + homeTeam + '</td>' +
              '<td class="score-hscore">' + hScore + '</td>' +
              '<td class="period">' + currentPeriod + '</td>' +
              '</tr>'
              table = '<table class="data">' + rows + '</table>'
              return table

              </script>
              </html>





              share|improve this answer






















                up vote
                0
                down vote










                up vote
                0
                down vote









                you can use this:
                you must select ascore and hscore separately to compare values, so I change their class name to score-ascore and score-hscore.



                after condition occurred change name class with winning.



                <!DOCTYPE html>
                <html>
                <head>
                <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
                </head>
                <body>
                </body>

                <script type="text/javascript">
                $(document).ready(function()
                $('body').html(create())
                var ascore = $('.score-ascore').text()
                var hscore = $('.score-hscore').text()
                if(aScore>hScore)
                var element = $("td.name")
                element.addClass("winning")
                element.removeClass("name")


                )

                function create()
                awayTeam = 10
                aScore = 10
                homeTeam = 10
                hScore = 9
                currentPeriod = 10
                rows = 10
                rows+= '<tr class="row">' +
                '<td class="name">' + awayTeam + '</td>' +
                '<td class="score-ascore">' + aScore + '</td>' +
                '<td class="name">' + homeTeam + '</td>' +
                '<td class="score-hscore">' + hScore + '</td>' +
                '<td class="period">' + currentPeriod + '</td>' +
                '</tr>'
                table = '<table class="data">' + rows + '</table>'
                return table

                </script>
                </html>





                share|improve this answer












                you can use this:
                you must select ascore and hscore separately to compare values, so I change their class name to score-ascore and score-hscore.



                after condition occurred change name class with winning.



                <!DOCTYPE html>
                <html>
                <head>
                <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
                </head>
                <body>
                </body>

                <script type="text/javascript">
                $(document).ready(function()
                $('body').html(create())
                var ascore = $('.score-ascore').text()
                var hscore = $('.score-hscore').text()
                if(aScore>hScore)
                var element = $("td.name")
                element.addClass("winning")
                element.removeClass("name")


                )

                function create()
                awayTeam = 10
                aScore = 10
                homeTeam = 10
                hScore = 9
                currentPeriod = 10
                rows = 10
                rows+= '<tr class="row">' +
                '<td class="name">' + awayTeam + '</td>' +
                '<td class="score-ascore">' + aScore + '</td>' +
                '<td class="name">' + homeTeam + '</td>' +
                '<td class="score-hscore">' + hScore + '</td>' +
                '<td class="period">' + currentPeriod + '</td>' +
                '</tr>'
                table = '<table class="data">' + rows + '</table>'
                return table

                </script>
                </html>






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 10 at 5:17









                mahradbt

                1349




                1349



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53235976%2ftrying-to-add-change-a-class-within-a-td-tag-based-on-condition-when-the-td%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

                    Syphilis

                    Darth Vader #20