I have a link appended to a div element. And on clicking the link, I want a function to be executed.In order to check if the function is called, when I click the link, i had an alert box in that function. But no alert box is appearing if I click the link?
This is the link added to the div element 'fb_
contentarea_
col2top'.
$("<p class='title2'>Recent Entries | <a id='actions' href='#'>Actions</a> </p>").appendTo("#fb_contentarea_col2top");
When I click this link, I want this function to be called,
$('#actions').click(function (){
alert("HI");
});
But the alert does not come. What is the mistake I am doing?