I am using jQuery to do something like:
$("#div1 .code").css('display','inline');
Now the problem is that when I add another element with class "code" inside div1, it does not get the CSS tag of display inline.
How can I make it so that it always updates the CSS for any new elements part of div1.
Thank you for your time.