I want to use jQuery to create a new div on the page when a certain link's click event is activated. I know this part will be fine. The part I am concerned about is this: if inside of the newly created div is another link, will I then be able to use jQuery to capture the click event of this new link? I.e. will the javascript be able to capture click events of the new html element that was 'dynamically' inserted using jQuery? If not, how can I mimic this functionality?
Thanks