When I run my JavaScript code in Firebug, it looks like this:
tr=$(this).parent('tr');
tr.find('.img-delete').css('display','block');
However, I am unable to see the change reflected on the browser. Is there a way to make it appear?
Update:
Initially, I was not aware that the change should be visible immediately after it is made. My user interface elements are located within a thickbox, and although I was able to detect events on these elements and adjust the CSS accordingly, the changes were still not showing up. This has left me wondering why my adjustments are not taking effect.