I have a number of tables, for example:
<table class="onion" id="12">
When a div named "Mark_Pre_Val" gets clicked i want tables with the id's 4, 6, 12 & 21 to change their class to "onionClick", and if one of them is already "onionClick" then don't change the class.
Here is the click event:
$(".Mark_Pre_Val").click(function(){ });
Can someone point me to the right direction how to approach this?