I have two in a table with ids row_26 and notificationrow_26. notificationrow_26 is dynamically added to DOM after page has been loaded.
I want to highlight notificationrow_26. So I use
var deviceUID = 26;
$("#notificationrow_" + deviceUID).effect("highlight", {}, 3000);
but when I do this. It does not highlight that row. I also tried just accessing notificationrow_26 but it does not access that even.
It does highlight row_26 when I ask it to. I heard something about jquery live but how can I access it with jquery live? I think jquery live is only for events and stuff. I just want to access this row which has been added to DOM dynamically.
Am I missing something?