Hi I have a html page with a div and i'm loading data into it every 10 seconds (using jQuery load().) from a php page which is querying a mysql db.
This is great but what i want to do is if a value in the table i'm loading into the div goes above/below a pre-determined setpoint then i need that whole row to highlight red/green etc. Would i use something like jQuery for this ie. table striping but adapted. or could i just do it in PHP ie. if temp > 50 then highlight row red?
Any ideas?
Thanks