I have some elements of the page being injected by a library after the page has been loaded. These elements have onClick actions, which is controlled by jQuery. Since these items are rendered after the page has been loaded, would jQuery have an issue targeting these items to apply the onClick action?
|
Use the form:
Sample markup:
NOTE: this form binds to the document not the parent element, forcing document traversal and thus not recommended optimally:
Example: clones the first element in the markup above and makes them blue when clicked:
|
|||||||||||
|
|
This is a typical case for using delegated events where you bind the handler to the parent element with a specific selector passed as an argument and jQuery will trigger the handler only when the matching selector is the one triggering the event. Read more on jQuery documentation under Direct and delegated events -> http://api.jquery.com/on/
The above is to target the dynamic elements that could be added later to DOM. Note:
|
|||||||||||
|
on()worked beautifully :) – icu222much Nov 13 '12 at 20:04