i have gone thorugh all the answers for my question but for me anuthing doesnt seem to be work. I want to blink my table row color
Here is Code : Currently it showing only purple color with no blink
$(document).ready(function() {
openticketPageLoad();
setInterval(findYellow, 1000);
function findYellow() {
$('#divOutputWindow').find('tr').each(function() {
var $this = $(this);
if ($this.css("background-color") == "purple") {
$this.css("background-color", "white")
} else {
$this.css("background-color", "purple")
}
})
}
});
HTML is generated using jQuery(CSS)+Ajax+Some Code behind CS File Here is code i got from "Inspect Element"
<tr class="ui-state-default2 ui-pgrid-table-row-visible" style="background-color: purple; "><td class="ui-pgrid-table-expander"></td>
<td class="ui-pgrid-table-cell-sorted"><input name="ctl391" type="checkbox" id="chkTicket_189293" class=" chkTicket" value="189293"></td><td>189293</td><td><input name="ctl392" type="text" id="txtVendorTicket_189293" class=" vendorTicket" onblur="" value=""></td><td>SWCW35216</td><td>FLM</td><td>SDB CISCO</td><td>Open</td><td>CASH HANDLER FATAL ERROR,CASSETTE FAULTED</td><td>04-08-2012 13:36:31</td><td>04-08-2012 14:05:00</td><td>4.52</td><td>System</td>
</tr>