Remove class from all tr but the last selected one
Hi all,
I have a page with a lot of tables, and each table has selectable rows.
When a table row is selected, the "highlight" style is applied to it. I need to "unselect" (i.e. remove the "highlight" style class) from each row but the last selected one.
Here is a code example:
- <table>
- <thead></thead>
- <tbody>
- <tr class="content highlight">
- <tr class="content">
- <tbody>
- <table>
- <table>
- <thead></thead>
- <tbody>
- <tr class="content highlight">
- <tr class="content">
- <tbody>
- <table>
How can I accomplish this?
Thanks in advance :)