For example, here's what I have..
Code: Select all
$(document).ready(function(){
$('#divTest li').hover(function() {
alert('test');
})
});
Code: Select all
<div id="Data"></div>
This is the div that's being loaded from another page with the following content...
<div id="divTest">
<ul>
<li>some data</li>
</ul>
</div>