Actually, the top right link worked for me.
However, try:
$(document).on('click', '#container_logo', function(){
alert("hello");
});
If elements are inserted, this will do the trick.
Since you are using an older version of jQuery (1.3.1), you should use .live(), for example:
$(document).live('click', '#container_logo', function(){
alert("hello");
});
Also note that you can bind the wrapper to the DOM element into which the code is entered:
$('#container').on('click', '#container_logo', function(){
alert("hello");
});
source
share