Hey,
I have function where it creates img element and sets id = title,
When i add to index.html jquery
Code:
$('#title').click(function() {
  alert('xx');
});
it doesn't work, why?


Jscript function:

Code:
 function showUploadedItem (source) {
  		var list = document.getElementById("image-list"),
	  		li   = document.createElement("li"),
...