Hi,
I insert a row at run time for screener and choice task section. At choice task the row I am inserting is in grey background color even the levels are dissimilar. I tried the below code to remove the background color but it does not work.
<script type="text/javascript">
$(document).ready(function() {
$("tr td:contains('Upfront fees')").each(function() {
$(this).siblings('td').css("background-color", "#FFFFFF");
$(this).css("background-color", "#FFFFFF");
});
});
</script>
<style type="text/css">
Common level color code takes priority over this code, meaning this code works in other screens except the screen where the background grey color appears.
Note: I am inserting this row just above summed pricing level
Please help.