<td class="text-center">
Is there a way to call a class in the above <td>
tag based on a condition (Boolean value check)?
I want to add "pointer" to the class call if the condition is true and leave it as "text-center" if it is false... like below:
if condition is met:
<td class="pointer text-center">
if condition is not met:
<td class="text-center">