I\'m using some embed codes that insert HTML to the page dynamically and since I have to modify that dynamically inserted HTML, I want a jquery function to wait until the pa
Try this:
$(document).ready(function () { if ( $('#abc')[0] ) { alert("yes"); } });