Note that there are some explanatory texts on larger screens.

plurals
  1. POjQuery: alternate row color except 'no-alternate-color' class
    primarykey
    data
    text
    <p>I have this expression in a JavaScript file...</p> <pre><code>$('tbody tr:even').addClass("alt-row"); </code></pre> <p>It alternates the color of all my table rows, which is ok. But I would like to add an exception class such as "no-alternate-color" to the tr's.</p> <pre><code>&lt;table id="invoice"&gt; &lt;tbody&gt; &lt;tr class="headings"&gt; &lt;th class="item first" style="padding-left:5px;"&gt;Unidad&lt;/th&gt; &lt;th class="description"&gt;Descripcion&lt;/th&gt; &lt;th class="price"&gt;Precio&lt;/th&gt; &lt;th class="quantity"&gt;Cantidad&lt;/th&gt; &lt;th class="linetotal last" style="padding-right:7px;"&gt;Total&lt;/th&gt; &lt;/tr&gt; &lt;tr class="lineitem alt-row" style="border-bottom:1px solid #e5e5e5;"&gt; &lt;td class="item_name_data" style="padding:2px 2px 2px 5px;"&gt;MacBook Pro 13"&lt;/td&gt; &lt;td class="description"&gt;13-inch: 2.4 GHz 2.4GHz dual-core Intel Core i5 &lt;/td&gt; &lt;td class="price_data"&gt;1199.99&lt;/td&gt; &lt;td class="quantity_data"&gt;2&lt;/td&gt; &lt;td class="linetotal_data" style="padding-right:5px;"&gt;2399.98&lt;/td&gt; &lt;/tr&gt; &lt;tr class="lineitem" style="border-bottom:1px solid #e5e5e5;"&gt; &lt;td class="item_name_data" style="padding:2px 2px 2px 5px;"&gt;Muji Table&lt;/td&gt; &lt;td class="description"&gt;awesome light brown table&lt;/td&gt; &lt;td class="price_data"&gt;89.99&lt;/td&gt; &lt;td class="quantity_data"&gt;1&lt;/td&gt; &lt;td class="linetotal_data" style="padding-right:5px;"&gt;89.99&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; </code></pre> <p>For example, the table above did not originally had the "alt-row" class in the tr's, but it was added by the jQuery function. </p> <p>I'm not very fluent with jQuery. How could I accomplish that?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload