Hello friends,
var product="";
for (var i=0; i<10; i++)
{
product+="<div align='center' width='88' id='"+i+"'>"+i+"</div>";
$("#"+i).hover(function()
{
alert(i);
});
}
product variable is able to generate the desired output with the div ids ,but when I m moving my mouseover those divs, that mouseover function(from jquery) is not working/called.
Please help
Thanks Dave