My code is as follows. How to call onMouseOver of 'li' element in the
loop from jQuery ?

<script>
        $(document).ready(function(){
        var curTimeInterval = 0;
        var timeInterval = 2000 ;
        $('ul.News li').each(function() {
                curTimeInterval += timeInterval;
                setTimeout(function() {
                //I would like to invoke onMouseOver of the li element here
                                //I tried $(this).mouseover(); and it
did not work
                }, curTimeInterval);
        });
        });
</script>

<ul class="News">
<li id="Story1" onMouseOver="UpdateNews('Story1')">My Stroy1</li>
<li id="Story2" onMouseOver="UpdateNews('Story2)">My Stroy2</li>
<li id="Story3" onMouseOver="UpdateNews('Story3')">My Stroy3</li>
</ul>

Reply via email to