$('#content').droppable({
drop:function(event , ui){
$('<div>').appendTo('#content');
$('#content div').load('div.html');
}
});
Below code doesn't select the divContainer ID
$('#divContainer').click(function(){
$('#divContainer').hide();
});
This is my html page DIV.html
<div id="divContainer">
SampleDIV
</div>
The DIv gets added to my page but i can't select the div using it's ID !