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.
javascript css coffeescript
add a comment |
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.
javascript css coffeescript
add a comment |
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.
javascript css coffeescript
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
javascript css coffeescript
asked Nov 10 at 4:23
Woody
82
82
add a comment |
add a comment |
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
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
add a comment |
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>
add a comment |
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
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
add a comment |
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
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
add a comment |
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
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
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
add a comment |
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
add a comment |
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>
add a comment |
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>
add a comment |
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>
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>
answered Nov 10 at 5:17
mahradbt
1349
1349
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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