Say I have the following code:
$('.give-white-border').css('border': '1px solid #FFF');
This would be fine until I dynamically added another element with the class "give-white-border". I looked into .live() but while its a step in the right direction, Im not really binding an event. Could someone point me in the right direction?