image onclick event not working
        Posted  
        
            by 
                heart_throbber
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by heart_throbber
        
        
        
        Published on 2012-04-30T09:16:19Z
        Indexed on 
            2012/11/08
            23:01 UTC
        
        
        Read the original article
        Hit count: 265
        
im tryin to make a onclick event for my image, but its not workin..the alert is not showing up..
$(document).ready(function(){
    $('img.closeAttrIcon').click(function(){
        alert("ww");
    });
});
even if i try like this with ..bind.. no hope...
$(document).ready(function(){
    $('img.closeAttrIcon').bind('click',function(){
        alert("ww");
    });
});
the html will be created during this event:
$('a#btnAddStdntAttr').click(function(){
    var newAttr = '<div class="attrParent"><br class="clear"><label></label><input type="text" id="stdntAttributeKey1" maxlength="250" style="width: 13%;" name="stdntAttributeKey1"/>';
    newAttr+= '<input type="text" id="stdntAttributeValue1" maxlength="250" style="width: 13%;" name="stdntAttributeValue1"/>';
    newAttr+= '<img src="<c:url value="/static/images/closeIcon.png"/>" onclick="removeStdntAttr();" class="closeAttrIcon" alt="Close" title="Close" /></div>';
    $(this).after(newAttr);
});
what am i doing wrong here..please help..
© Stack Overflow or respective owner